mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 04:30:26 +00:00
18 lines
835 B
Go
18 lines
835 B
Go
|
// 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"`
|
||
|
}
|