mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
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
|
||
|
}
|