HealthCheckEvent

data class HealthCheckEvent(    @Json(name = "connection_id") val connectionId: String,     @Json(name = "created_at") val createdAt: OffsetDateTime,     @Json(name = "custom") val custom: Map<String, Any?> = emptyMap(),     @Json(name = "type") val type: String,     @Json(name = "cid") val cid: String? = null,     @Json(name = "received_at") val receivedAt: OffsetDateTime? = null) : VideoEvent

Constructors

Link copied to clipboard
constructor(    @Json(name = "connection_id") connectionId: String,     @Json(name = "created_at") createdAt: OffsetDateTime,     @Json(name = "custom") custom: Map<String, Any?> = emptyMap(),     @Json(name = "type") type: String,     @Json(name = "cid") cid: String? = null,     @Json(name = "received_at") receivedAt: OffsetDateTime? = null)

Properties

Link copied to clipboard
val cid: String? = null
Link copied to clipboard
Link copied to clipboard
val createdAt: OffsetDateTime
Link copied to clipboard
Link copied to clipboard
val receivedAt: OffsetDateTime? = null
Link copied to clipboard

Functions

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