> ## Documentation Index
> Fetch the complete documentation index at: https://translations.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 {
  /**
   * メールアドレス確認のステータスを含む画面固有のデータ。
   * @type {{ status: string; } | null}
   */
  data: {
    /**
     * メールアドレス確認プロセスのステータス。
     * 指定可能な値には "success"、"failure"、"already_verified" などが含まれます。
     * このステータスはユーザーに結果を通知するために表示する必要があります。
     */
    status: string;
  } | null;

  /**
   * この画面で利用可能なナビゲーションリンク。
   * @type {string | null}
   */
  loginLink: string | null;
}
```

<div id="properties">
  ## プロパティ
</div>

<ParamField body="captcha" type={<span><a href="/ja/docs/libraries/acul/js-sdk/Screens/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">
  画面固有のデータです。

  #### 型宣言

  \{ `status`: `string`; }

  #### status

  メールアドレス確認プロセスのステータスです。
  指定可能な値には、"success"、"failure"、"already\_verified" などがあります。
  このステータスは、結果をユーザーに知らせるために表示する必要があります。

  `null`
</ParamField>

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

<ParamField body="links" type="Record">
  この画面で使用できるナビゲーションリンクです。
</ParamField>

<ParamField body="loginLink" type="string">
  この画面で使用できるナビゲーションリンクです。
</ParamField>

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

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