QuickCode

# QuickCode

data class QuickCode(val code: String, val nowTime: Long, 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.
nowTime The current MIRACL MFA system time.

# Constructors

QuickCode
constructor(code: String, nowTime: Long, expireTime: Long, ttlSeconds: Int)

# Properties

Name Summary
code
val code: String
expireTime
val expireTime: Long
nowTime
val nowTime: Long
ttlSeconds
val ttlSeconds: Int