Package com.microsoft.graph.models
Class NotificationMessageTemplate
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.NotificationMessageTemplate
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class NotificationMessageTemplate
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Notification Message Template.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Branding Options.The Default Locale.The Display Name.The Last Modified Date Time.The Localized Notification Messages.The Role Scope Tag Ids. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
brandingOptions
@SerializedName(value="brandingOptions", alternate="BrandingOptions") @Expose @Nullable public EnumSet<NotificationTemplateBrandingOptions> brandingOptionsThe Branding Options. The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: none, includeCompanyLogo, includeCompanyName, includeContactInformation, includeCompanyPortalLink, includeDeviceDetails, unknownFutureValue. -
defaultLocale
@SerializedName(value="defaultLocale", alternate="DefaultLocale") @Expose @Nullable public String defaultLocaleThe Default Locale. The default locale to fallback onto when the requested locale is not available. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. Display name for the Notification Message Template. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. DateTime the object was last modified. -
roleScopeTagIds
@SerializedName(value="roleScopeTagIds", alternate="RoleScopeTagIds") @Expose @Nullable public List<String> roleScopeTagIdsThe Role Scope Tag Ids. List of Scope Tags for this Entity instance. -
localizedNotificationMessages
@SerializedName(value="localizedNotificationMessages", alternate="LocalizedNotificationMessages") @Expose @Nullable public LocalizedNotificationMessageCollectionPage localizedNotificationMessagesThe Localized Notification Messages. The list of localized messages for this Notification Message Template.
-
-
Constructor Details
-
NotificationMessageTemplate
public NotificationMessageTemplate()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-