> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-actions-triggers-prototype.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ScreenMembersOnEmailVerificationResult

ScreenMembersOnEmailVerificationResult

```ts Example theme={null}
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

<ParamField body="captcha" type={<span><a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/CaptchaContext">CaptchaContext</a></span>} />

<ParamField body="captchaImage" type="string" />

<ParamField body="captchaProvider" type="string" />

<ParamField body="captchaSiteKey" type="string" />

<ParamField body="data" type="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`
</ParamField>

<ParamField body="isCaptchaAvailable" type="boolean" />

<ParamField body="links" type="Record">
  Navigation links available on this screen.
</ParamField>

<ParamField body="loginLink" type="string">
  Navigation links available on this screen.
</ParamField>

<ParamField body="name" type="string" />

<ParamField body="texts" type="Record" />
