mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-24 19:52:03 -08:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
66 lines
2.3 KiB
Go
66 lines
2.3 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
import "context"
|
|
|
|
// WorkbookRangeFormatAutofitColumnsRequestParameter undocumented
|
|
type WorkbookRangeFormatAutofitColumnsRequestParameter struct {
|
|
}
|
|
|
|
// WorkbookRangeFormatAutofitRowsRequestParameter undocumented
|
|
type WorkbookRangeFormatAutofitRowsRequestParameter struct {
|
|
}
|
|
|
|
//
|
|
type WorkbookRangeFormatAutofitColumnsRequestBuilder struct{ BaseRequestBuilder }
|
|
|
|
// AutofitColumns action undocumented
|
|
func (b *WorkbookRangeFormatRequestBuilder) AutofitColumns(reqObj *WorkbookRangeFormatAutofitColumnsRequestParameter) *WorkbookRangeFormatAutofitColumnsRequestBuilder {
|
|
bb := &WorkbookRangeFormatAutofitColumnsRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
|
bb.BaseRequestBuilder.baseURL += "/autofitColumns"
|
|
bb.BaseRequestBuilder.requestObject = reqObj
|
|
return bb
|
|
}
|
|
|
|
//
|
|
type WorkbookRangeFormatAutofitColumnsRequest struct{ BaseRequest }
|
|
|
|
//
|
|
func (b *WorkbookRangeFormatAutofitColumnsRequestBuilder) Request() *WorkbookRangeFormatAutofitColumnsRequest {
|
|
return &WorkbookRangeFormatAutofitColumnsRequest{
|
|
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
|
}
|
|
}
|
|
|
|
//
|
|
func (r *WorkbookRangeFormatAutofitColumnsRequest) Post(ctx context.Context) error {
|
|
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
|
|
}
|
|
|
|
//
|
|
type WorkbookRangeFormatAutofitRowsRequestBuilder struct{ BaseRequestBuilder }
|
|
|
|
// AutofitRows action undocumented
|
|
func (b *WorkbookRangeFormatRequestBuilder) AutofitRows(reqObj *WorkbookRangeFormatAutofitRowsRequestParameter) *WorkbookRangeFormatAutofitRowsRequestBuilder {
|
|
bb := &WorkbookRangeFormatAutofitRowsRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
|
bb.BaseRequestBuilder.baseURL += "/autofitRows"
|
|
bb.BaseRequestBuilder.requestObject = reqObj
|
|
return bb
|
|
}
|
|
|
|
//
|
|
type WorkbookRangeFormatAutofitRowsRequest struct{ BaseRequest }
|
|
|
|
//
|
|
func (b *WorkbookRangeFormatAutofitRowsRequestBuilder) Request() *WorkbookRangeFormatAutofitRowsRequest {
|
|
return &WorkbookRangeFormatAutofitRowsRequest{
|
|
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
|
}
|
|
}
|
|
|
|
//
|
|
func (r *WorkbookRangeFormatAutofitRowsRequest) Post(ctx context.Context) error {
|
|
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
|
|
}
|