Package com.microsoft.graph.models
Class IdentityUserFlowAttribute
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.IdentityUserFlowAttribute
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
IdentityBuiltInUserFlowAttribute
,IdentityCustomUserFlowAttribute
public class IdentityUserFlowAttribute
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Identity User Flow Attribute.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Data Type.The Description.The Display Name.The User Flow Attribute Type. -
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
-
dataType
@SerializedName(value="dataType", alternate="DataType") @Expose @Nullable public IdentityUserFlowAttributeDataType dataTypeThe Data Type. The data type of the user flow attribute. This cannot be modified after the custom user flow attribute is created. The supported values for dataType are: string , boolean , int64 , stringCollection , dateTime. -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. The description of the user flow attribute that's shown to the user at the time of sign-up. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The display name of the user flow attribute. -
userFlowAttributeType
@SerializedName(value="userFlowAttributeType", alternate="UserFlowAttributeType") @Expose @Nullable public IdentityUserFlowAttributeType userFlowAttributeTypeThe User Flow Attribute Type. The type of the user flow attribute. This is a read-only attribute that is automatically set. Depending on the type of attribute, the values for this property will be builtIn, custom, or required.
-
-
Constructor Details
-
IdentityUserFlowAttribute
public IdentityUserFlowAttribute()
-
-
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
-