# QuickCode
data class QuickCode(val code: String, val expireTime: Long, val ttlSeconds: Int) : Serializable
Object representing QuickCode and its validity period.
# Parameters
code | The issued QuickCode. |
expireTime | MIRACL MFA system time when the code will expire. |
ttlSeconds | The expiration period in seconds. |
# Constructors
QuickCode | constructor(code: String, expireTime: Long, ttlSeconds: Int) |
# Properties
Name | Summary |
---|---|
code | val code: String |
expireTime | val expireTime: Long |
ttlSeconds | val ttlSeconds: Int |