DeviceKeys

@Serializable
data class DeviceKeys(val userId: UserId, val deviceId: String, val algorithms: Set<EncryptionAlgorithm>, val keys: Keys, val dehydrated: Boolean? = null)

Constructors

Link copied to clipboard
constructor(userId: UserId, deviceId: String, algorithms: Set<EncryptionAlgorithm>, keys: Keys, dehydrated: Boolean? = null)

Properties

Link copied to clipboard
@SerialName(value = "algorithms")
val algorithms: Set<EncryptionAlgorithm>
Link copied to clipboard
@SerialName(value = "dehydrated")
val dehydrated: Boolean?
Link copied to clipboard
@SerialName(value = "device_id")
val deviceId: String
Link copied to clipboard
@SerialName(value = "keys")
val keys: Keys
Link copied to clipboard
@SerialName(value = "user_id")
val userId: UserId