RoomKeyRequestBody

@JsonClass(generateAdapter = true)
data class RoomKeyRequestBody(    @Json(name = "algorithm") val algorithm: String? = null,     @Json(name = "room_id") val roomId: String? = null,     @Json(name = "sender_key") val senderKey: String? = null,     @Json(name = "session_id") val sessionId: String? = null)

Class representing an room key request body content.

Constructors

Link copied to clipboard
fun RoomKeyRequestBody(    @Json(name = "algorithm") algorithm: String? = null,     @Json(name = "room_id") roomId: String? = null,     @Json(name = "sender_key") senderKey: String? = null,     @Json(name = "session_id") sessionId: String? = null)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
fun toJson(): String

Properties

Link copied to clipboard
val algorithm: String? = null
Link copied to clipboard
val roomId: String? = null
Link copied to clipboard
val senderKey: String? = null
Link copied to clipboard
val sessionId: String? = null