QueryCallParticipantSessionsResponse
data class QueryCallParticipantSessionsResponse(@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: Int, @Json(name = "total_participant_duration") val totalParticipantDuration: Int, @Json(name = "total_participant_sessions") val totalParticipantSessions: Int, @Json(name = "participants_sessions") val participantsSessions: List<ParticipantSessionDetails> = emptyList(), @Json(name = "next") val next: String? = null, @Json(name = "prev") val prev: String? = null, @Json(name = "session") val session: CallSessionResponse? = 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: Int, @Json(name = "total_participant_duration") totalParticipantDuration: Int, @Json(name = "total_participant_sessions") totalParticipantSessions: Int, @Json(name = "participants_sessions") participantsSessions: List<ParticipantSessionDetails> = emptyList(), @Json(name = "next") next: String? = null, @Json(name = "prev") prev: String? = null, @Json(name = "session") session: CallSessionResponse? = null)