5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 20:42:31 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go

46 lines
1.5 KiB
Go

// 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
}