mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 05:40:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
38 lines
1.2 KiB
Go
38 lines
1.2 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
import "context"
|
|
|
|
// WorkbookApplicationCalculateRequestParameter undocumented
|
|
type WorkbookApplicationCalculateRequestParameter struct {
|
|
// CalculationType undocumented
|
|
CalculationType *string `json:"calculationType,omitempty"`
|
|
}
|
|
|
|
//
|
|
type WorkbookApplicationCalculateRequestBuilder struct{ BaseRequestBuilder }
|
|
|
|
// Calculate action undocumented
|
|
func (b *WorkbookApplicationRequestBuilder) Calculate(reqObj *WorkbookApplicationCalculateRequestParameter) *WorkbookApplicationCalculateRequestBuilder {
|
|
bb := &WorkbookApplicationCalculateRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
|
bb.BaseRequestBuilder.baseURL += "/calculate"
|
|
bb.BaseRequestBuilder.requestObject = reqObj
|
|
return bb
|
|
}
|
|
|
|
//
|
|
type WorkbookApplicationCalculateRequest struct{ BaseRequest }
|
|
|
|
//
|
|
func (b *WorkbookApplicationCalculateRequestBuilder) Request() *WorkbookApplicationCalculateRequest {
|
|
return &WorkbookApplicationCalculateRequest{
|
|
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
|
}
|
|
}
|
|
|
|
//
|
|
func (r *WorkbookApplicationCalculateRequest) Post(ctx context.Context) error {
|
|
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
|
|
}
|