mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-09-23 00:12:32 +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/RequestWorkbookFunctionsBitxor.go
generated
vendored
Normal file
32
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitxor.go
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||||
|
||||
package msgraph
|
||||
|
||||
import "context"
|
||||
|
||||
//
|
||||
type WorkbookFunctionsBitxorRequestBuilder struct{ BaseRequestBuilder }
|
||||
|
||||
// Bitxor action undocumented
|
||||
func (b *WorkbookFunctionsRequestBuilder) Bitxor(reqObj *WorkbookFunctionsBitxorRequestParameter) *WorkbookFunctionsBitxorRequestBuilder {
|
||||
bb := &WorkbookFunctionsBitxorRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
||||
bb.BaseRequestBuilder.baseURL += "/bitxor"
|
||||
bb.BaseRequestBuilder.requestObject = reqObj
|
||||
return bb
|
||||
}
|
||||
|
||||
//
|
||||
type WorkbookFunctionsBitxorRequest struct{ BaseRequest }
|
||||
|
||||
//
|
||||
func (b *WorkbookFunctionsBitxorRequestBuilder) Request() *WorkbookFunctionsBitxorRequest {
|
||||
return &WorkbookFunctionsBitxorRequest{
|
||||
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
func (r *WorkbookFunctionsBitxorRequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
|
||||
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
|
||||
return
|
||||
}
|
Reference in New Issue
Block a user