Package com.microsoft.graph.models
Class UserFlowLanguageConfiguration
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.UserFlowLanguageConfiguration
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class UserFlowLanguageConfiguration
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the User Flow Language Configuration.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Default Pages.The Display Name.The Is Enabled.The Overrides Pages. -
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
-
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The language name to display. This property is read-only. -
isEnabled
@SerializedName(value="isEnabled", alternate="IsEnabled") @Expose @Nullable public Boolean isEnabledThe Is Enabled. Indicates whether the language is enabled within the user flow. -
defaultPages
@SerializedName(value="defaultPages", alternate="DefaultPages") @Expose @Nullable public UserFlowLanguagePageCollectionPage defaultPagesThe Default Pages. Collection of pages with the default content to display in a user flow for a specified language. This collection does not allow any kind of modification. -
overridesPages
@SerializedName(value="overridesPages", alternate="OverridesPages") @Expose @Nullable public UserFlowLanguagePageCollectionPage overridesPagesThe Overrides Pages. Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows to modify the content of the page, any other modification is not allowed (creation or deletion of pages).
-
-
Constructor Details
-
UserFlowLanguageConfiguration
public UserFlowLanguageConfiguration()
-
-
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
-