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