QuickCode

# QuickCode

data class QuickCode(val code: String, val nowTime: Long, val expireTime: Long, val ttlSeconds: Int) : OneTimeCode

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
open override val code: String
expireTime
open override val expireTime: Long
nowTime
open override val nowTime: Long
ttlSeconds
open override val ttlSeconds: Int