ResetPasswordEmailCode

@Serializable
data class ResetPasswordEmailCode(val code: String, val strategy: String = RESET_PASSWORD_EMAIL_CODE) : SignIn.AttemptFirstFactorParams

Parameters for reset password email code verification strategy.

Constructors

Link copied to clipboard
constructor(code: String, strategy: String = RESET_PASSWORD_EMAIL_CODE)

Properties

Link copied to clipboard

The verification code received via email for password reset.

Link copied to clipboard
open override val strategy: String

The strategy value depends on the object's identifier value. Each authentication identifier supports different verification strategies.