github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelNotification.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // NotificationMessageTemplate Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance.
     8  type NotificationMessageTemplate struct {
     9  	// Entity is the base model of NotificationMessageTemplate
    10  	Entity
    11  	// LastModifiedDateTime DateTime the object was last modified.
    12  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    13  	// DisplayName Display name for the Notification Message Template.
    14  	DisplayName *string `json:"displayName,omitempty"`
    15  	// DefaultLocale The default locale to fallback onto when the requested locale is not available.
    16  	DefaultLocale *string `json:"defaultLocale,omitempty"`
    17  	// BrandingOptions The Message Template Branding Options. Branding is defined in the Intune Admin Console.
    18  	BrandingOptions *NotificationTemplateBrandingOptions `json:"brandingOptions,omitempty"`
    19  	// LocalizedNotificationMessages undocumented
    20  	LocalizedNotificationMessages []LocalizedNotificationMessage `json:"localizedNotificationMessages,omitempty"`
    21  }