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