QueryCallStatsResponse

data class QueryCallStatsResponse(    @Json(name = "duration") val duration: String,     @Json(name = "reports") val reports: List<CallStatsReportSummaryResponse>,     @Json(name = "next") val next: String? = null,     @Json(name = "prev") val prev: String? = null)

Basic response information

Constructors

Link copied to clipboard
constructor(    @Json(name = "duration") duration: String,     @Json(name = "reports") reports: List<CallStatsReportSummaryResponse>,     @Json(name = "next") next: String? = null,     @Json(name = "prev") prev: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val next: String? = null
Link copied to clipboard
val prev: String? = null
Link copied to clipboard