PermissionRequestEvent
data class PermissionRequestEvent( @Json(name = "call_cid") val callCid: String, @Json(name = "created_at") val createdAt: OffsetDateTime, @Json(name = "permissions") val permissions: List<String>, @Json(name = "user") val user: UserResponse, @Json(name = "type") val type: String) : VideoEvent, WSCallEvent
This event is sent when a user requests access to a feature on a call,
Constructors
Link copied to clipboard
constructor( @Json(name = "call_cid") callCid: String, @Json(name = "created_at") createdAt: OffsetDateTime, @Json(name = "permissions") permissions: List<String>, @Json(name = "user") user: UserResponse, @Json(name = "type") type: String)