mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-24 19:52:03 -08:00
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)
|
||
|
}
|