BlockedUserEvent
data class BlockedUserEvent( @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 = "blocked_by_user") val blockedByUser: UserResponse? = null) : VideoEvent, WSCallEvent
This event is sent to call participants to notify when a user is blocked on a call, clients can use this event to show a notification.
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 = "blocked_by_user") blockedByUser: UserResponse? = null)