OlmEventContent

@JsonClass(generateAdapter = true)
data class OlmEventContent(@Json(name = "ciphertext") val ciphertext: Map<String, Any>? = null, @Json(name = "sender_key") val senderKey: String? = null)

Class representing an encrypted event content.

Constructors

Link copied to clipboard
fun OlmEventContent(@Json(name = "ciphertext") ciphertext: Map<String, Any>? = null, @Json(name = "sender_key") senderKey: String? = null)

Properties

Link copied to clipboard
val ciphertext: Map<String, Any>? = null
Link copied to clipboard
val senderKey: String? = null

the sender key.