QueryCallSessionParticipantStatsResponse
data class QueryCallSessionParticipantStatsResponse(@Json(name = "call_id") val callId: String, @Json(name = "call_session_id") val callSessionId: String, @Json(name = "call_type") val callType: String, @Json(name = "duration") val duration: String, @Json(name = "participants") val participants: List<CallStatsParticipant> = emptyList(), @Json(name = "counts") val counts: CallStatsParticipantCounts, @Json(name = "call_ended_at") val callEndedAt: OffsetDateTime? = null, @Json(name = "call_started_at") val callStartedAt: OffsetDateTime? = null, @Json(name = "next") val next: String? = null, @Json(name = "prev") val prev: String? = null, @Json(name = "tmp_data_source") val tmpDataSource: String? = null)
Basic response information
Constructors
Link copied to clipboard
constructor(@Json(name = "call_id") callId: String, @Json(name = "call_session_id") callSessionId: String, @Json(name = "call_type") callType: String, @Json(name = "duration") duration: String, @Json(name = "participants") participants: List<CallStatsParticipant> = emptyList(), @Json(name = "counts") counts: CallStatsParticipantCounts, @Json(name = "call_ended_at") callEndedAt: OffsetDateTime? = null, @Json(name = "call_started_at") callStartedAt: OffsetDateTime? = null, @Json(name = "next") next: String? = null, @Json(name = "prev") prev: String? = null, @Json(name = "tmp_data_source") tmpDataSource: String? = null)