Class Session
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.callrecords.models.Session
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Session.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Callee.The Caller.The End Date Time.The Failure Info.The Modalities.The Segments.The Start Date Time. -
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
-
callee
The Callee. Endpoint that answered the session. -
caller
The Caller. Endpoint that initiated the session. -
endDateTime
@SerializedName(value="endDateTime", alternate="EndDateTime") @Expose @Nullable public OffsetDateTime endDateTimeThe End Date Time. UTC time when the last user left the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -
failureInfo
@SerializedName(value="failureInfo", alternate="FailureInfo") @Expose @Nullable public FailureInfo failureInfoThe Failure Info. Failure information associated with the session if the session failed. -
modalities
@SerializedName(value="modalities", alternate="Modalities") @Expose @Nullable public List<Modality> modalitiesThe Modalities. List of modalities present in the session. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue. -
startDateTime
@SerializedName(value="startDateTime", alternate="StartDateTime") @Expose @Nullable public OffsetDateTime startDateTimeThe Start Date Time. UTC time when the first user joined the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -
segments
@SerializedName(value="segments", alternate="Segments") @Expose @Nullable public SegmentCollectionPage segmentsThe Segments. The list of segments involved in the session. Read-only. Nullable.
-
-
Constructor Details
-
Session
public Session()
-
-
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
-