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)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val createdAt: OffsetDateTime
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun getCallCID(): String
Link copied to clipboard
open override fun getEventType(): String