blob: a09777aebdf8851de6a991b8bf59f4f0cd61dae1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// WindowsUpdateActiveHoursInstall undocumented
type WindowsUpdateActiveHoursInstall struct {
// WindowsUpdateInstallScheduleType is the base model of WindowsUpdateActiveHoursInstall
WindowsUpdateInstallScheduleType
// ActiveHoursStart Active Hours Start
ActiveHoursStart *time.Time `json:"activeHoursStart,omitempty"`
// ActiveHoursEnd Active Hours End
ActiveHoursEnd *time.Time `json:"activeHoursEnd,omitempty"`
}
|