Package video.api.client.api.models
Class VideoSessionSession
java.lang.Object
video.api.client.api.models.VideoSessionSession
- All Implemented Interfaces:
java.io.Serializable
public class VideoSessionSession
extends java.lang.Object
implements java.io.Serializable
VideoSessionSession
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSERIALIZED_NAME_ENDED_ATstatic java.lang.StringSERIALIZED_NAME_LOADED_ATstatic java.lang.StringSERIALIZED_NAME_SESSION_ID -
Constructor Summary
Constructors Constructor Description VideoSessionSession() -
Method Summary
Modifier and Type Method Description VideoSessionSessionendedAt(java.time.OffsetDateTime endedAt)booleanequals(java.lang.Object o)java.time.OffsetDateTimegetEndedAt()When the video session ended, presented in ISO-8601 format.java.time.OffsetDateTimegetLoadedAt()When the video session started, presented in ISO-8601 format.java.lang.StringgetSessionId()The unique identifier for the session that you can use to track what happens during it.inthashCode()VideoSessionSessionloadedAt(java.time.OffsetDateTime loadedAt)VideoSessionSessionsessionId(java.lang.String sessionId)voidsetEndedAt(java.time.OffsetDateTime endedAt)voidsetLoadedAt(java.time.OffsetDateTime loadedAt)voidsetSessionId(java.lang.String sessionId)java.lang.StringtoString()Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Field Details
-
SERIALIZED_NAME_SESSION_ID
public static final java.lang.String SERIALIZED_NAME_SESSION_ID- See Also:
- Constant Field Values
-
SERIALIZED_NAME_LOADED_AT
public static final java.lang.String SERIALIZED_NAME_LOADED_AT- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ENDED_AT
public static final java.lang.String SERIALIZED_NAME_ENDED_AT- See Also:
- Constant Field Values
-
-
Constructor Details
-
VideoSessionSession
public VideoSessionSession()
-
-
Method Details
-
sessionId
-
getSessionId
@Nullable public java.lang.String getSessionId()The unique identifier for the session that you can use to track what happens during it.- Returns:
- sessionId
-
setSessionId
public void setSessionId(java.lang.String sessionId) -
loadedAt
-
getLoadedAt
@Nullable public java.time.OffsetDateTime getLoadedAt()When the video session started, presented in ISO-8601 format.- Returns:
- loadedAt
-
setLoadedAt
public void setLoadedAt(java.time.OffsetDateTime loadedAt) -
endedAt
-
getEndedAt
@Nullable public java.time.OffsetDateTime getEndedAt()When the video session ended, presented in ISO-8601 format.- Returns:
- endedAt
-
setEndedAt
public void setEndedAt(java.time.OffsetDateTime endedAt) -
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-