Verification

@Serializable
data class Verification(val status: Verification.Status, val strategy: String? = null, val attempts: Int? = null, val expireAt: Long? = null, val error: Error? = null, val externalVerificationRedirectUrl: String? = null, val nonce: String? = null)

The state of the verification process of a sign-in or sign-up attempt.

Constructors

Link copied to clipboard
constructor(status: Verification.Status, strategy: String? = null, attempts: Int? = null, expireAt: Long? = null, error: Error? = null, externalVerificationRedirectUrl: String? = null, nonce: String? = null)

Types

Link copied to clipboard
@Serializable
enum Status : Enum<Verification.Status>

The state of the verification.

Properties

Link copied to clipboard
val attempts: Int? = null

The number of attempts related to the verification.

Link copied to clipboard
val error: Error? = null

The last error the verification attempt ran into.

Link copied to clipboard
val expireAt: Long? = null

The time the verification will expire at.

Link copied to clipboard

The redirect URL for an external verification.

Link copied to clipboard
val nonce: String? = null

The nonce pertaining to the verification.

Link copied to clipboard

The state of the verification.

Link copied to clipboard
val strategy: String? = null

The strategy pertaining to the parent sign-up or sign-in attempt.