CallStatsReportReadyEvent
data class CallStatsReportReadyEvent(@Json(name = "call_cid") val callCid: String, @Json(name = "created_at") val createdAt: OffsetDateTime, @Json(name = "session_id") val sessionId: String, @Json(name = "counts") val counts: CallStatsParticipantCounts, @Json(name = "type") val type: String, @Json(name = "is_trimmed") val isTrimmed: Boolean? = null, @Json(name = "participants_overview") val participantsOverview: List<CallStatsParticipant>? = emptyList()) : VideoEvent, WSCallEvent
This event is sent when the insights report is ready
Constructors
Link copied to clipboard
constructor(@Json(name = "call_cid") callCid: String, @Json(name = "created_at") createdAt: OffsetDateTime, @Json(name = "session_id") sessionId: String, @Json(name = "counts") counts: CallStatsParticipantCounts, @Json(name = "type") type: String, @Json(name = "is_trimmed") isTrimmed: Boolean? = null, @Json(name = "participants_overview") participantsOverview: List<CallStatsParticipant>? = emptyList())