CallRecording

data class CallRecording(    @Json(name = "end_time") val endTime: OffsetDateTime,     @Json(name = "filename") val filename: String,     @Json(name = "start_time") val startTime: OffsetDateTime,     @Json(name = "url") val url: String)

CallRecording represents a recording of a call.

Constructors

Link copied to clipboard
constructor(    @Json(name = "end_time") endTime: OffsetDateTime,     @Json(name = "filename") filename: String,     @Json(name = "start_time") startTime: OffsetDateTime,     @Json(name = "url") url: String)

Properties

Link copied to clipboard
val endTime: OffsetDateTime
Link copied to clipboard
Link copied to clipboard
val startTime: OffsetDateTime
Link copied to clipboard
val url: String