diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentAction.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentAction.go | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentAction.go b/vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentAction.go new file mode 100644 index 00000000..27fae8e5 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentAction.go @@ -0,0 +1,37 @@ +// 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) +} |