# Package-level declarations
# Types
| Name | Summary |
|---|---|
| OneTimeCode | interface OneTimeCode : Serializable Interface representing one time code and its validity period. |
| OTP | data class OTP(val code: String, val nowTime: Long, val expireTime: Long, val ttlSeconds: Int) : OneTimeCode Object representing one time password and its validity period. |
| QuickCode | data class QuickCode(val code: String, val nowTime: Long, val expireTime: Long, val ttlSeconds: Int) : OneTimeCode Object representing QuickCode and its validity period. |
| User | data class User(val userId: String, val projectId: String, val revoked: Boolean, val pinLength: Int, val mpinId: ByteArray, val token: ByteArray, val dtas: String, val publicKey: ByteArray?) Object representing the user in the platform. |