diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go b/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go deleted file mode 100644 index c1de3cfb..00000000 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go +++ /dev/null @@ -1,45 +0,0 @@ -// 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 -} |