diff options
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/ScheduleEntityModel.go')
-rw-r--r-- | vendor/github.com/matterbridge/msgraph.go/beta/ScheduleEntityModel.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleEntityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleEntityModel.go new file mode 100644 index 00000000..6581ede6 --- /dev/null +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleEntityModel.go @@ -0,0 +1,17 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// ScheduleEntity undocumented +type ScheduleEntity struct { + // Object is the base model of ScheduleEntity + Object + // StartDateTime undocumented + StartDateTime *time.Time `json:"startDateTime,omitempty"` + // EndDateTime undocumented + EndDateTime *time.Time `json:"endDateTime,omitempty"` + // Theme undocumented + Theme *ScheduleEntityTheme `json:"theme,omitempty"` +} |