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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // LocalizedNotificationMessage The text content of a Notification Message Template for the specified locale.
     8  type LocalizedNotificationMessage struct {
     9  	// Entity is the base model of LocalizedNotificationMessage
    10  	Entity
    11  	// LastModifiedDateTime DateTime the object was last modified.
    12  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    13  	// Locale The Locale for which this message is destined.
    14  	Locale *string `json:"locale,omitempty"`
    15  	// Subject The Message Template Subject.
    16  	Subject *string `json:"subject,omitempty"`
    17  	// MessageTemplate The Message Template content.
    18  	MessageTemplate *string `json:"messageTemplate,omitempty"`
    19  	// IsDefault Flag to indicate whether or not this is the default locale for language fallback. This flag can only be set. To unset, set this property to true on another Localized Notification Message.
    20  	IsDefault *bool `json:"isDefault,omitempty"`
    21  }