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 Details

    • oDataType

      @SerializedName("@odata.type") @Expose @Nullable public String oDataType
      the OData type of the object as returned by the service
    • expression

      @SerializedName(value="expression", alternate="Expression") @Expose @Nullable public String expression
      The Expression. Equivalent expression representation of this attributeMappingSource object.
    • name

      @SerializedName(value="name", alternate="Name") @Expose @Nullable public String 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> parameters
      The 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 type
      The 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:
      additionalDataManager in interface com.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:
      setRawObject in interface com.microsoft.graph.serializer.IJsonBackedObject
      Parameters:
      serializer - the serializer
      json - the JSON object to set this object to