CallCandidate

@JsonClass(generateAdapter = true)
data class CallCandidate(    @Json(name = "sdpMid") val sdpMid: String? = null,     @Json(name = "sdpMLineIndex") val sdpMLineIndex: Int = 0,     @Json(name = "candidate") val candidate: String? = null)

Constructors

Link copied to clipboard
fun CallCandidate(    @Json(name = "sdpMid") sdpMid: String? = null,     @Json(name = "sdpMLineIndex") sdpMLineIndex: Int = 0,     @Json(name = "candidate") candidate: String? = null)

Properties

Link copied to clipboard
val candidate: String? = null

Required. The SDP 'a' line of the candidate.

Link copied to clipboard
val sdpMid: String? = null

Required. The SDP media type this candidate is intended for.

Link copied to clipboard
val sdpMLineIndex: Int = 0

Required. The index of the SDP 'm' line this candidate is intended for.