mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-26 23:41:36 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
43 lines
1.6 KiB
Go
43 lines
1.6 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
import "context"
|
|
|
|
// SynchronizationSchemaParseExpressionRequestParameter undocumented
|
|
type SynchronizationSchemaParseExpressionRequestParameter struct {
|
|
// Expression undocumented
|
|
Expression *string `json:"expression,omitempty"`
|
|
// TestInputObject undocumented
|
|
TestInputObject *ExpressionInputObject `json:"testInputObject,omitempty"`
|
|
// TargetAttributeDefinition undocumented
|
|
TargetAttributeDefinition *AttributeDefinition `json:"targetAttributeDefinition,omitempty"`
|
|
}
|
|
|
|
//
|
|
type SynchronizationSchemaParseExpressionRequestBuilder struct{ BaseRequestBuilder }
|
|
|
|
// ParseExpression action undocumented
|
|
func (b *SynchronizationSchemaRequestBuilder) ParseExpression(reqObj *SynchronizationSchemaParseExpressionRequestParameter) *SynchronizationSchemaParseExpressionRequestBuilder {
|
|
bb := &SynchronizationSchemaParseExpressionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
|
bb.BaseRequestBuilder.baseURL += "/parseExpression"
|
|
bb.BaseRequestBuilder.requestObject = reqObj
|
|
return bb
|
|
}
|
|
|
|
//
|
|
type SynchronizationSchemaParseExpressionRequest struct{ BaseRequest }
|
|
|
|
//
|
|
func (b *SynchronizationSchemaParseExpressionRequestBuilder) Request() *SynchronizationSchemaParseExpressionRequest {
|
|
return &SynchronizationSchemaParseExpressionRequest{
|
|
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
|
}
|
|
}
|
|
|
|
//
|
|
func (r *SynchronizationSchemaParseExpressionRequest) Post(ctx context.Context) (resObj *ParseExpressionResponse, err error) {
|
|
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
|
|
return
|
|
}
|