Verification

@Serializable
data class Verification(val status: Verification.Status = Status.UNKNOWN, 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 = Status.UNKNOWN, 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

The number of attempts related to the verification.

Link copied to clipboard
val error: Error?

The last error the verification attempt ran into.

Link copied to clipboard

The time the verification will expire at.

Link copied to clipboard

The redirect URL for an external verification.

Link copied to clipboard

The nonce pertaining to the verification.

Link copied to clipboard

The state of the verification.

Link copied to clipboard

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