mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-24 19:52:03 -08:00
20 lines
508 B
Go
20 lines
508 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// WorkingHours undocumented
|
||
|
type WorkingHours struct {
|
||
|
// Object is the base model of WorkingHours
|
||
|
Object
|
||
|
// DaysOfWeek undocumented
|
||
|
DaysOfWeek []DayOfWeek `json:"daysOfWeek,omitempty"`
|
||
|
// StartTime undocumented
|
||
|
StartTime *time.Time `json:"startTime,omitempty"`
|
||
|
// EndTime undocumented
|
||
|
EndTime *time.Time `json:"endTime,omitempty"`
|
||
|
// TimeZone undocumented
|
||
|
TimeZone *TimeZoneBase `json:"timeZone,omitempty"`
|
||
|
}
|