blob: 77c4eb2b1c7fa266937d9112a2b1336ee74fa024 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ScheduleInformation undocumented
type ScheduleInformation struct {
// Object is the base model of ScheduleInformation
Object
// ScheduleID undocumented
ScheduleID *string `json:"scheduleId,omitempty"`
// ScheduleItems undocumented
ScheduleItems []ScheduleItem `json:"scheduleItems,omitempty"`
// AvailabilityView undocumented
AvailabilityView *string `json:"availabilityView,omitempty"`
// Error undocumented
Error *FreeBusyError `json:"error,omitempty"`
// WorkingHours undocumented
WorkingHours *WorkingHours `json:"workingHours,omitempty"`
}
|