UserDeactivatedEvent

data class UserDeactivatedEvent(@Json(name = "created_at") val createdAt: OffsetDateTime, @Json(name = "custom") val custom: Map<String, Any?> = emptyMap(), @Json(name = "user") val user: UserResponseCommonFields, @Json(name = "type") val type: String, @Json(name = "received_at") val receivedAt: OffsetDateTime? = null, @Json(name = "created_by") val createdBy: UserResponseCommonFields? = null) : VideoEvent

This event is sent when a user gets deactivated. The event contains information about the user that was deactivated.

Constructors

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

Properties

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

Functions

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