5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 17:12:31 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleAction.go

45 lines
1.2 KiB
Go

// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import (
"context"
"time"
)
// ScheduleShareRequestParameter undocumented
type ScheduleShareRequestParameter struct {
// NotifyTeam undocumented
NotifyTeam *bool `json:"notifyTeam,omitempty"`
// StartDateTime undocumented
StartDateTime *time.Time `json:"startDateTime,omitempty"`
// EndDateTime undocumented
EndDateTime *time.Time `json:"endDateTime,omitempty"`
}
//
type ScheduleShareRequestBuilder struct{ BaseRequestBuilder }
// Share action undocumented
func (b *ScheduleRequestBuilder) Share(reqObj *ScheduleShareRequestParameter) *ScheduleShareRequestBuilder {
bb := &ScheduleShareRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
bb.BaseRequestBuilder.baseURL += "/share"
bb.BaseRequestBuilder.requestObject = reqObj
return bb
}
//
type ScheduleShareRequest struct{ BaseRequest }
//
func (b *ScheduleShareRequestBuilder) Request() *ScheduleShareRequest {
return &ScheduleShareRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
}
}
//
func (r *ScheduleShareRequest) Post(ctx context.Context) error {
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
}