mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
38 lines
1.2 KiB
Go
38 lines
1.2 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
import "context"
|
|
|
|
// BookingAppointmentCancelRequestParameter undocumented
|
|
type BookingAppointmentCancelRequestParameter struct {
|
|
// CancellationMessage undocumented
|
|
CancellationMessage *string `json:"cancellationMessage,omitempty"`
|
|
}
|
|
|
|
//
|
|
type BookingAppointmentCancelRequestBuilder struct{ BaseRequestBuilder }
|
|
|
|
// Cancel action undocumented
|
|
func (b *BookingAppointmentRequestBuilder) Cancel(reqObj *BookingAppointmentCancelRequestParameter) *BookingAppointmentCancelRequestBuilder {
|
|
bb := &BookingAppointmentCancelRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
|
bb.BaseRequestBuilder.baseURL += "/cancel"
|
|
bb.BaseRequestBuilder.requestObject = reqObj
|
|
return bb
|
|
}
|
|
|
|
//
|
|
type BookingAppointmentCancelRequest struct{ BaseRequest }
|
|
|
|
//
|
|
func (b *BookingAppointmentCancelRequestBuilder) Request() *BookingAppointmentCancelRequest {
|
|
return &BookingAppointmentCancelRequest{
|
|
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
|
}
|
|
}
|
|
|
|
//
|
|
func (r *BookingAppointmentCancelRequest) Post(ctx context.Context) error {
|
|
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
|
|
}
|