summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go45
1 files changed, 45 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go b/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go
new file mode 100644
index 00000000..c1de3cfb
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go
@@ -0,0 +1,45 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+import "context"
+
+// WorkbookChartPointRequestBuilder is request builder for WorkbookChartPoint
+type WorkbookChartPointRequestBuilder struct{ BaseRequestBuilder }
+
+// Request returns WorkbookChartPointRequest
+func (b *WorkbookChartPointRequestBuilder) Request() *WorkbookChartPointRequest {
+ return &WorkbookChartPointRequest{
+ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
+ }
+}
+
+// WorkbookChartPointRequest is request for WorkbookChartPoint
+type WorkbookChartPointRequest struct{ BaseRequest }
+
+// Get performs GET request for WorkbookChartPoint
+func (r *WorkbookChartPointRequest) Get(ctx context.Context) (resObj *WorkbookChartPoint, 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 WorkbookChartPoint
+func (r *WorkbookChartPointRequest) Update(ctx context.Context, reqObj *WorkbookChartPoint) error {
+ return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
+}
+
+// Delete performs DELETE request for WorkbookChartPoint
+func (r *WorkbookChartPointRequest) Delete(ctx context.Context) error {
+ return r.JSONRequest(ctx, "DELETE", "", nil, nil)
+}
+
+// Format is navigation property
+func (b *WorkbookChartPointRequestBuilder) Format() *WorkbookChartPointFormatRequestBuilder {
+ bb := &WorkbookChartPointFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
+ bb.baseURL += "/format"
+ return bb
+}