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, 0 insertions, 37 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentAction.go b/vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentAction.go deleted file mode 100644 index 27fae8e5..00000000 --- a/vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentAction.go +++ /dev/null @@ -1,37 +0,0 @@ -// 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) -} |