summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEdate.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEdate.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEdate.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEdate.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEdate.go
new file mode 100644
index 00000000..98ae17a5
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEdate.go
@@ -0,0 +1,32 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+import "context"
+
+//
+type WorkbookFunctionsEdateRequestBuilder struct{ BaseRequestBuilder }
+
+// Edate action undocumented
+func (b *WorkbookFunctionsRequestBuilder) Edate(reqObj *WorkbookFunctionsEdateRequestParameter) *WorkbookFunctionsEdateRequestBuilder {
+ bb := &WorkbookFunctionsEdateRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
+ bb.BaseRequestBuilder.baseURL += "/edate"
+ bb.BaseRequestBuilder.requestObject = reqObj
+ return bb
+}
+
+//
+type WorkbookFunctionsEdateRequest struct{ BaseRequest }
+
+//
+func (b *WorkbookFunctionsEdateRequestBuilder) Request() *WorkbookFunctionsEdateRequest {
+ return &WorkbookFunctionsEdateRequest{
+ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
+ }
+}
+
+//
+func (r *WorkbookFunctionsEdateRequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
+ err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
+ return
+}