UserAccountDataEvent

@JsonClass(generateAdapter = true)
data class UserAccountDataEvent(@Json(name = "type") val type: String, @Json(name = "content") val content: Content)

This is a simplified Event with just a type and a content. Currently used types are defined in UserAccountDataTypes

Constructors

Link copied to clipboard
fun UserAccountDataEvent(@Json(name = "type") type: String, @Json(name = "content") content: Content)

Properties

Link copied to clipboard
val content: Content
Link copied to clipboard
val type: String