ScreenMembersOnEmailVerificationResult
export interface ScreenMembersOnEmailVerificationResult extends ScreenMembers {
/**
* Screen-specific data containing the status of the email verification.
* @type {{ status: string; } | null}
*/
data: {
/**
* The status of the email verification process.
* Possible values might include "success", "failure", "already_verified", etc.
* This status should be displayed to the user to inform them of the outcome.
*/
status: string;
} | null;
/**
* Navigation links available on this screen.
* @type {string | null}
*/
loginLink: string | null;
}
Properties
Screen-specific data.Type Declaration
{ status: string; }status
The status of the email verification process.
Possible values might include “success”, “failure”, “already_verified”, etc.
This status should be displayed to the user to inform them of the outcome.null
Navigation links available on this screen.
Navigation links available on this screen.