KickedUserEvent
data class KickedUserEvent(@Json(name = "call_cid") val callCid: String, @Json(name = "created_at") val createdAt: OffsetDateTime, @Json(name = "user") val user: UserResponse, @Json(name = "type") val type: String, @Json(name = "kicked_by_user") val kickedByUser: UserResponse? = null) : VideoEvent, WSCallEvent
This event is sent to call participants to notify when a user is kicked from a call. Clients should make the kicked user leave the call UI.
Constructors
Link copied to clipboard
constructor(@Json(name = "call_cid") callCid: String, @Json(name = "created_at") createdAt: OffsetDateTime, @Json(name = "user") user: UserResponse, @Json(name = "type") type: String, @Json(name = "kicked_by_user") kickedByUser: UserResponse? = null)