mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-09-11 01:52:30 +00:00
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
This commit is contained in:
32
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsText.go
generated
vendored
Normal file
32
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsText.go
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||||
|
||||
package msgraph
|
||||
|
||||
import "context"
|
||||
|
||||
//
|
||||
type WorkbookFunctionsTextRequestBuilder struct{ BaseRequestBuilder }
|
||||
|
||||
// Text action undocumented
|
||||
func (b *WorkbookFunctionsRequestBuilder) Text(reqObj *WorkbookFunctionsTextRequestParameter) *WorkbookFunctionsTextRequestBuilder {
|
||||
bb := &WorkbookFunctionsTextRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
||||
bb.BaseRequestBuilder.baseURL += "/text"
|
||||
bb.BaseRequestBuilder.requestObject = reqObj
|
||||
return bb
|
||||
}
|
||||
|
||||
//
|
||||
type WorkbookFunctionsTextRequest struct{ BaseRequest }
|
||||
|
||||
//
|
||||
func (b *WorkbookFunctionsTextRequestBuilder) Request() *WorkbookFunctionsTextRequest {
|
||||
return &WorkbookFunctionsTextRequest{
|
||||
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
func (r *WorkbookFunctionsTextRequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
|
||||
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
|
||||
return
|
||||
}
|
Reference in New Issue
Block a user