mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
67 lines
2.3 KiB
Go
67 lines
2.3 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
import "context"
|
|
|
|
// WorkbookChartAxisRequestBuilder is request builder for WorkbookChartAxis
|
|
type WorkbookChartAxisRequestBuilder struct{ BaseRequestBuilder }
|
|
|
|
// Request returns WorkbookChartAxisRequest
|
|
func (b *WorkbookChartAxisRequestBuilder) Request() *WorkbookChartAxisRequest {
|
|
return &WorkbookChartAxisRequest{
|
|
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
|
|
}
|
|
}
|
|
|
|
// WorkbookChartAxisRequest is request for WorkbookChartAxis
|
|
type WorkbookChartAxisRequest struct{ BaseRequest }
|
|
|
|
// Get performs GET request for WorkbookChartAxis
|
|
func (r *WorkbookChartAxisRequest) Get(ctx context.Context) (resObj *WorkbookChartAxis, 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 WorkbookChartAxis
|
|
func (r *WorkbookChartAxisRequest) Update(ctx context.Context, reqObj *WorkbookChartAxis) error {
|
|
return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
|
|
}
|
|
|
|
// Delete performs DELETE request for WorkbookChartAxis
|
|
func (r *WorkbookChartAxisRequest) Delete(ctx context.Context) error {
|
|
return r.JSONRequest(ctx, "DELETE", "", nil, nil)
|
|
}
|
|
|
|
// Format is navigation property
|
|
func (b *WorkbookChartAxisRequestBuilder) Format() *WorkbookChartAxisFormatRequestBuilder {
|
|
bb := &WorkbookChartAxisFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
|
bb.baseURL += "/format"
|
|
return bb
|
|
}
|
|
|
|
// MajorGridlines is navigation property
|
|
func (b *WorkbookChartAxisRequestBuilder) MajorGridlines() *WorkbookChartGridlinesRequestBuilder {
|
|
bb := &WorkbookChartGridlinesRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
|
bb.baseURL += "/majorGridlines"
|
|
return bb
|
|
}
|
|
|
|
// MinorGridlines is navigation property
|
|
func (b *WorkbookChartAxisRequestBuilder) MinorGridlines() *WorkbookChartGridlinesRequestBuilder {
|
|
bb := &WorkbookChartGridlinesRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
|
bb.baseURL += "/minorGridlines"
|
|
return bb
|
|
}
|
|
|
|
// Title is navigation property
|
|
func (b *WorkbookChartAxisRequestBuilder) Title() *WorkbookChartAxisTitleRequestBuilder {
|
|
bb := &WorkbookChartAxisTitleRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
|
bb.baseURL += "/title"
|
|
return bb
|
|
}
|