AnswerResponse

data class AnswerResponse(val callId: UUID, val sdp: String, val customHeaders: ArrayList<CustomHeaders> = arrayListOf()) : ReceivedResult

A response to an invitation that the user created. Someone has answered your call.

Parameters

callId

a unique UUID that represents each ongoing call.

sdp

the Session Description Protocol that is received as a part of the answer to the call.

Constructors

Link copied to clipboard
constructor(callId: UUID, sdp: String, customHeaders: ArrayList<CustomHeaders> = arrayListOf())

Properties

Link copied to clipboard
@SerializedName(value = "callID")
val callId: UUID
Link copied to clipboard
@SerializedName(value = "custom_headers")
val customHeaders: ArrayList<CustomHeaders>
Link copied to clipboard
@SerializedName(value = "sdp")
val sdp: String