blob: af4d8a1cd148adc957d6705973d856d6776d9bed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// DeviceComplianceActionItem Scheduled Action Configuration
type DeviceComplianceActionItem struct {
// Entity is the base model of DeviceComplianceActionItem
Entity
// GracePeriodHours Number of hours to wait till the action will be enforced. Valid values 0 to 8760
GracePeriodHours *int `json:"gracePeriodHours,omitempty"`
// ActionType What action to take
ActionType *DeviceComplianceActionType `json:"actionType,omitempty"`
// NotificationTemplateID What notification Message template to use
NotificationTemplateID *string `json:"notificationTemplateId,omitempty"`
// NotificationMessageCCList A list of group IDs to speicify who to CC this notification message to.
NotificationMessageCCList []string `json:"notificationMessageCCList,omitempty"`
}
|