ConnectionErrorEvent

data class ConnectionErrorEvent(    @Json(name = "connection_id") val connectionId: String,     @Json(name = "created_at") val createdAt: OffsetDateTime,     @Json(name = "error") val error: APIError,     @Json(name = "type") val type: String) : VideoEvent

This event is sent when the WS connection fails

Constructors

Link copied to clipboard
constructor(    @Json(name = "connection_id") connectionId: String,     @Json(name = "created_at") createdAt: OffsetDateTime,     @Json(name = "error") error: APIError,     @Json(name = "type") type: String)

Properties

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 getEventType(): String