Package com.microsoft.graph.models
Class IncomingContext
java.lang.Object
com.microsoft.graph.models.IncomingContext
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class IncomingContext
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Incoming Context.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Observed Participant Id.the OData type of the object as returned by the serviceThe On Behalf Of.The Source Participant Id.The Transferor. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManager
void
setRawObject
(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 -
observedParticipantId
@SerializedName(value="observedParticipantId", alternate="ObservedParticipantId") @Expose @Nullable public String observedParticipantIdThe Observed Participant Id. The id of the participant that is under observation. Read-only. -
onBehalfOf
@SerializedName(value="onBehalfOf", alternate="OnBehalfOf") @Expose @Nullable public IdentitySet onBehalfOfThe On Behalf Of. The identity that the call is happening on behalf of. -
sourceParticipantId
@SerializedName(value="sourceParticipantId", alternate="SourceParticipantId") @Expose @Nullable public String sourceParticipantIdThe Source Participant Id. The id of the participant that triggered the incoming call. Read-only. -
transferor
@SerializedName(value="transferor", alternate="Transferor") @Expose @Nullable public IdentitySet transferorThe Transferor. The identity that transferred the call.
-
-
Constructor Details
-
IncomingContext
public IncomingContext()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManager
in 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:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-