Skip to main content
ScreenMembersOnEmailVerificationResult
Example
export interface ScreenMembersOnEmailVerificationResult extends ScreenMembers {
  /**
   * メールアドレス確認のステータスを含む画面固有のデータ。
   * @type {{ status: string; } | null}
   */
  data: {
    /**
     * メールアドレス確認プロセスのステータス。
     * 指定可能な値には "success"、"failure"、"already_verified" などが含まれます。
     * このステータスはユーザーに結果を通知するために表示する必要があります。
     */
    status: string;
  } | null;

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

プロパティ

captchaImage
string
captchaProvider
string
captchaSiteKey
string
data
status
画面固有のデータです。

型宣言

{ status: string; }

status

メールアドレス確認プロセスのステータスです。 指定可能な値には、“success”、“failure”、“already_verified” などがあります。 このステータスは、結果をユーザーに知らせるために表示する必要があります。null
isCaptchaAvailable
boolean
この画面で使用できるナビゲーションリンクです。
この画面で使用できるナビゲーションリンクです。
name
string
texts
Record