ServerKeys

@Serializable
data class ServerKeys(val serverName: String, val validUntil: Long? = null, val oldVerifyKeys: Map<String, ServerKeys.OldVerifyKey>? = null, val verifyKeys: Map<String, ServerKeys.VerifyKey>)

Constructors

Link copied to clipboard
fun ServerKeys(serverName: String, validUntil: Long? = null, oldVerifyKeys: Map<String, ServerKeys.OldVerifyKey>? = null, verifyKeys: Map<String, ServerKeys.VerifyKey>)

Types

Link copied to clipboard
@Serializable
data class OldVerifyKey(val keyValue: String, val expiredAt: Long)
Link copied to clipboard
@Serializable
data class VerifyKey(val keyValue: String)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val validUntil: Long? = null
Link copied to clipboard