Skip to main content
ScreenMembersOnEmailVerificationResult
Example
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

captcha
captchaImage
string
captchaProvider
string
captchaSiteKey
string
data
status
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
isCaptchaAvailable
boolean
Navigation links available on this screen.
Navigation links available on this screen.
name
string
texts
Record