Package com.microsoft.graph.models
Class AttributeMappingSource
java.lang.Object
com.microsoft.graph.models.AttributeMappingSource
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class AttributeMappingSource
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Attribute Mapping Source.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Expression.The Name.the OData type of the object as returned by the serviceThe Parameters.The Type. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
expression
@SerializedName(value="expression", alternate="Expression") @Expose @Nullable public String expressionThe Expression. Equivalent expression representation of this attributeMappingSource object. -
name
The Name. Name parameter of the mapping source. Depending on the type property value, this can be the name of the function, the name of the source attribute, or a constant value to be used. -
parameters
@SerializedName(value="parameters", alternate="Parameters") @Expose @Nullable public List<StringKeyAttributeMappingSourceValuePair> parametersThe Parameters. If this object represents a function, lists function parameters. Parameters consist of attributeMappingSource objects themselves, allowing for complex expressions. If type is not Function, this property will be null/empty array. -
type
@SerializedName(value="type", alternate="Type") @Expose @Nullable public AttributeMappingSourceType typeThe Type. The type of this attribute mapping source. Possible values are: Attribute, Constant, Function. Default is Attribute.
-
-
Constructor Details
-
AttributeMappingSource
public AttributeMappingSource()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
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- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-