mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
26 lines
812 B
Go
26 lines
812 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// Notification undocumented
|
||
|
type Notification struct {
|
||
|
// Entity is the base model of Notification
|
||
|
Entity
|
||
|
// TargetHostName undocumented
|
||
|
TargetHostName *string `json:"targetHostName,omitempty"`
|
||
|
// ExpirationDateTime undocumented
|
||
|
ExpirationDateTime *time.Time `json:"expirationDateTime,omitempty"`
|
||
|
// Payload undocumented
|
||
|
Payload *PayloadTypes `json:"payload,omitempty"`
|
||
|
// DisplayTimeToLive undocumented
|
||
|
DisplayTimeToLive *int `json:"displayTimeToLive,omitempty"`
|
||
|
// Priority undocumented
|
||
|
Priority *Priority `json:"priority,omitempty"`
|
||
|
// GroupName undocumented
|
||
|
GroupName *string `json:"groupName,omitempty"`
|
||
|
// TargetPolicy undocumented
|
||
|
TargetPolicy *TargetPolicyEndpoints `json:"targetPolicy,omitempty"`
|
||
|
}
|