CallRingEvent
data class CallRingEvent( @Json(name = "call_cid") val callCid: String, @Json(name = "created_at") val createdAt: OffsetDateTime, @Json(name = "session_id") val sessionId: String, @Json(name = "video") val video: Boolean, @Json(name = "members") val members: List<MemberResponse>, @Json(name = "call") val call: CallResponse, @Json(name = "user") val user: UserResponse, @Json(name = "type") val type: String) : VideoEvent, WSCallEvent
This event is sent to all call members to notify they are getting called
Constructors
Link copied to clipboard
constructor( @Json(name = "call_cid") callCid: String, @Json(name = "created_at") createdAt: OffsetDateTime, @Json(name = "session_id") sessionId: String, @Json(name = "video") video: Boolean, @Json(name = "members") members: List<MemberResponse>, @Json(name = "call") call: CallResponse, @Json(name = "user") user: UserResponse, @Json(name = "type") type: String)