SharedChatSession

@Serializable
data class SharedChatSession(val sessionId: String, val hostBroadcasterId: String, val participants: List<SharedChatParticipant>, val createdAt: Instant, val updatedAt: Instant)

Represents an active shared chat session.

See also

Constructors

Link copied to clipboard
constructor(sessionId: String, hostBroadcasterId: String, participants: List<SharedChatParticipant>, createdAt: Instant, updatedAt: Instant)

Properties

Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: Instant

the UTC date and time of when the shared chat session began.

Link copied to clipboard
@SerialName(value = "host_broadcaster_id")
val hostBroadcasterId: String

the User ID of the host channel.

Link copied to clipboard

the list of participants in the shared chat session.

Link copied to clipboard
@SerialName(value = "session_id")
val sessionId: String

the unique identifier for the shared chat session.

Link copied to clipboard
@SerialName(value = "updated_at")
val updatedAt: Instant

the UTC date and time of when the shared chat session was last updated.