summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnRequest.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnRequest.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnRequest.go45
1 files changed, 45 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnRequest.go b/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnRequest.go
new file mode 100644
index 00000000..4b661448
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnRequest.go
@@ -0,0 +1,45 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+import "context"
+
+// WorkbookTableColumnRequestBuilder is request builder for WorkbookTableColumn
+type WorkbookTableColumnRequestBuilder struct{ BaseRequestBuilder }
+
+// Request returns WorkbookTableColumnRequest
+func (b *WorkbookTableColumnRequestBuilder) Request() *WorkbookTableColumnRequest {
+ return &WorkbookTableColumnRequest{
+ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
+ }
+}
+
+// WorkbookTableColumnRequest is request for WorkbookTableColumn
+type WorkbookTableColumnRequest struct{ BaseRequest }
+
+// Get performs GET request for WorkbookTableColumn
+func (r *WorkbookTableColumnRequest) Get(ctx context.Context) (resObj *WorkbookTableColumn, err error) {
+ var query string
+ if r.query != nil {
+ query = "?" + r.query.Encode()
+ }
+ err = r.JSONRequest(ctx, "GET", query, nil, &resObj)
+ return
+}
+
+// Update performs PATCH request for WorkbookTableColumn
+func (r *WorkbookTableColumnRequest) Update(ctx context.Context, reqObj *WorkbookTableColumn) error {
+ return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
+}
+
+// Delete performs DELETE request for WorkbookTableColumn
+func (r *WorkbookTableColumnRequest) Delete(ctx context.Context) error {
+ return r.JSONRequest(ctx, "DELETE", "", nil, nil)
+}
+
+// Filter is navigation property
+func (b *WorkbookTableColumnRequestBuilder) Filter() *WorkbookFilterRequestBuilder {
+ bb := &WorkbookFilterRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
+ bb.baseURL += "/filter"
+ return bb
+}