CallSessionParticipantCountsUpdatedEvent
data class CallSessionParticipantCountsUpdatedEvent( @Json(name = "anonymous_participant_count") val anonymousParticipantCount: Int, @Json(name = "call_cid") val callCid: String, @Json(name = "created_at") val createdAt: OffsetDateTime, @Json(name = "session_id") val sessionId: String, @Json(name = "participants_count_by_role") val participantsCountByRole: Map<String, Int>, @Json(name = "type") val type: String) : VideoEvent, WSCallEvent
This event is sent when the participant counts in a call session are updated
Constructors
Link copied to clipboard
constructor( @Json(name = "anonymous_participant_count") anonymousParticipantCount: Int, @Json(name = "call_cid") callCid: String, @Json(name = "created_at") createdAt: OffsetDateTime, @Json(name = "session_id") sessionId: String, @Json(name = "participants_count_by_role") participantsCountByRole: Map<String, Int>, @Json(name = "type") type: String)