Package com.microsoft.graph.models
Class EndUserNotification
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.EndUserNotification
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class EndUserNotification
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the End User Notification.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Created By.The Created Date Time.The Description.The Details.The Display Name.The Last Modified By.The Last Modified Date Time.The Notification Type.The Source.The Status.The Supported Locales. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
createdBy
@SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public EmailIdentity createdByThe Created By. Identity of the user who created the notification. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. Date and time when the notification was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. Description of the notification as defined by the user. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. Name of the notification as defined by the user. -
lastModifiedBy
@SerializedName(value="lastModifiedBy", alternate="LastModifiedBy") @Expose @Nullable public EmailIdentity lastModifiedByThe Last Modified By. Identity of the user who last modified the notification. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. Date and time when the notification was last modified. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -
notificationType
@SerializedName(value="notificationType", alternate="NotificationType") @Expose @Nullable public EndUserNotificationType notificationTypeThe Notification Type. Type of notification. Possible values are: unknown, positiveReinforcement, noTraining, trainingAssignment, trainingReminder, unknownFutureValue. -
source
@SerializedName(value="source", alternate="Source") @Expose @Nullable public SimulationContentSource sourceThe Source. The source of the content. Possible values are: unknown, global, tenant, unknownFutureValue. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public SimulationContentStatus statusThe Status. The status of the notification. Possible values are: unknown, draft, ready, archive, delete, unknownFutureValue. -
supportedLocales
@SerializedName(value="supportedLocales", alternate="SupportedLocales") @Expose @Nullable public List<String> supportedLocalesThe Supported Locales. Supported locales for endUserNotification content. -
details
@SerializedName(value="details", alternate="Details") @Expose @Nullable public EndUserNotificationDetailCollectionPage detailsThe Details.
-
-
Constructor Details
-
EndUserNotification
public EndUserNotification()
-
-
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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-