EncryptedEventContent

@JsonClass(generateAdapter = true)
data class EncryptedEventContent(    @Json(name = "algorithm") val algorithm: String? = null,     @Json(name = "ciphertext") val ciphertext: String? = null,     @Json(name = "device_id") val deviceId: String? = null,     @Json(name = "sender_key") val senderKey: String? = null,     @Json(name = "session_id") val sessionId: String? = null,     @Json(name = "m.relates_to") val relatesTo: RelationDefaultContent? = null)

Class representing an encrypted event content.

Constructors

Link copied to clipboard
fun EncryptedEventContent(    @Json(name = "algorithm") algorithm: String? = null,     @Json(name = "ciphertext") ciphertext: String? = null,     @Json(name = "device_id") deviceId: String? = null,     @Json(name = "sender_key") senderKey: String? = null,     @Json(name = "session_id") sessionId: String? = null,     @Json(name = "m.relates_to") relatesTo: RelationDefaultContent? = null)

Properties

Link copied to clipboard
val algorithm: String? = null

The used algorithm.

Link copied to clipboard
val ciphertext: String? = null

The encrypted event.

Link copied to clipboard
val deviceId: String? = null

The device id.

Link copied to clipboard
val relatesTo: RelationDefaultContent? = null
Link copied to clipboard
val senderKey: String? = null

The sender key.

Link copied to clipboard
val sessionId: String? = null

The session id.