Status

@Serializable
enum Status : Enum<SignIn.Status>

Represents the status of a sign-in process.

Each status indicates the current state of the sign-in flow and what action is required next.

Entries

Link copied to clipboard
@SerialName(value = "complete")
COMPLETE

The sign-in process is complete.

Link copied to clipboard
@SerialName(value = "needs_first_factor")
NEEDS_FIRST_FACTOR

The sign-in process needs a first factor verification.

Link copied to clipboard
@SerialName(value = "needs_second_factor")
NEEDS_SECOND_FACTOR

The sign-in process needs a second factor verification.

Link copied to clipboard
@SerialName(value = "needs_identifier")
NEEDS_IDENTIFIER

The sign-in process needs an identifier.

Link copied to clipboard
@SerialName(value = "needs_new_password")
NEEDS_NEW_PASSWORD

The user needs to create a new password.

Link copied to clipboard
@SerialName(value = "needs_client_trust")
NEEDS_CLIENT_TRUST

Client trust verification is required.

Link copied to clipboard

The sign-in process is in an unknown state.

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Functions

Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.