CallSelectAnswerContent

@JsonClass(generateAdapter = true)
data class CallSelectAnswerContent(    @Json(name = "call_id") val callId: String,     @Json(name = "party_id") val partyId: String? = null,     @Json(name = "selected_party_id") val selectedPartyId: String? = null,     @Json(name = "version") val version: String?) : CallSignalingContent

This event is sent by the callee when they wish to answer the call.

Constructors

Link copied to clipboard
fun CallSelectAnswerContent(    @Json(name = "call_id") callId: String,     @Json(name = "party_id") partyId: String? = null,     @Json(name = "selected_party_id") selectedPartyId: String? = null,     @Json(name = "version") version: String?)

Properties

Link copied to clipboard
open override val callId: String

Required. The ID of the call this event relates to.

Link copied to clipboard
open override val partyId: String? = null

Required. ID to let user identify remote echo of their own events

Link copied to clipboard
val selectedPartyId: String? = null

Required. Indicates the answer user has chosen.

Link copied to clipboard
open override val version: String?

Required. The version of the VoIP specification this message adheres to.