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