summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/WorkingHoursModel.go
blob: 33fea50c22c366e2ecb0ccbb1cc3c781803152db (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

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"`
}