Status

@Serializable
enum Status : Enum<SignUp.Status>

Represents the current status of the sign-up process.

The Status enum defines the possible states of a sign-up flow. Each state indicates a specific requirement or completion level in the sign-up process.

Entries

Link copied to clipboard
@SerialName(value = "abandoned")
ABANDONED

The sign-up has been inactive for over 24 hours. Once abandoned, the sign-up process cannot be resumed and a new sign-up must be initiated.

Link copied to clipboard
@SerialName(value = "missing_requirements")
MISSING_REQUIREMENTS

A requirement is unverified or missing from the Email, Phone, Username settings. For example, in the Clerk Dashboard, the Password setting is required but a password wasn't provided in the custom flow.

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

All the required fields have been supplied and verified, so the sign-up is complete and a new user and a session have been created.

Link copied to clipboard
@SerialName(value = "unknown")
UNKNOWN

The status is unknown or not recognized. This typically indicates an unexpected state that should be handled gracefully.

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.