forked from lug/matterbridge
Add initial Microsoft Teams support
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
This commit is contained in:
42
vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSchemaAction.go
generated
vendored
Normal file
42
vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSchemaAction.go
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
// 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
|
||||
}
|
||||
Reference in New Issue
Block a user