summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleAction.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/ScheduleAction.go')
-rw-r--r--vendor/github.com/matterbridge/msgraph.go/beta/ScheduleAction.go44
1 files changed, 44 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleAction.go
new file mode 100644
index 00000000..a625d8d3
--- /dev/null
+++ b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleAction.go
@@ -0,0 +1,44 @@
+// 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)
+}