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:
59
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDcount.go
generated
vendored
Normal file
59
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDcount.go
generated
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||||
|
||||
package msgraph
|
||||
|
||||
import "context"
|
||||
|
||||
//
|
||||
type WorkbookFunctionsDcountRequestBuilder struct{ BaseRequestBuilder }
|
||||
|
||||
// Dcount action undocumented
|
||||
func (b *WorkbookFunctionsRequestBuilder) Dcount(reqObj *WorkbookFunctionsDcountRequestParameter) *WorkbookFunctionsDcountRequestBuilder {
|
||||
bb := &WorkbookFunctionsDcountRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
||||
bb.BaseRequestBuilder.baseURL += "/dcount"
|
||||
bb.BaseRequestBuilder.requestObject = reqObj
|
||||
return bb
|
||||
}
|
||||
|
||||
//
|
||||
type WorkbookFunctionsDcountRequest struct{ BaseRequest }
|
||||
|
||||
//
|
||||
func (b *WorkbookFunctionsDcountRequestBuilder) Request() *WorkbookFunctionsDcountRequest {
|
||||
return &WorkbookFunctionsDcountRequest{
|
||||
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
func (r *WorkbookFunctionsDcountRequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
|
||||
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
|
||||
return
|
||||
}
|
||||
|
||||
//
|
||||
type WorkbookFunctionsDcountARequestBuilder struct{ BaseRequestBuilder }
|
||||
|
||||
// DcountA action undocumented
|
||||
func (b *WorkbookFunctionsRequestBuilder) DcountA(reqObj *WorkbookFunctionsDcountARequestParameter) *WorkbookFunctionsDcountARequestBuilder {
|
||||
bb := &WorkbookFunctionsDcountARequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
||||
bb.BaseRequestBuilder.baseURL += "/dcountA"
|
||||
bb.BaseRequestBuilder.requestObject = reqObj
|
||||
return bb
|
||||
}
|
||||
|
||||
//
|
||||
type WorkbookFunctionsDcountARequest struct{ BaseRequest }
|
||||
|
||||
//
|
||||
func (b *WorkbookFunctionsDcountARequestBuilder) Request() *WorkbookFunctionsDcountARequest {
|
||||
return &WorkbookFunctionsDcountARequest{
|
||||
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
func (r *WorkbookFunctionsDcountARequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
|
||||
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
|
||||
return
|
||||
}
|
Reference in New Issue
Block a user