Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
export interface ScreenMembersOnEmailVerificationResult extends ScreenMembers { /** * メールアドレス確認のステータスを含む画面固有のデータ。 * @type {{ status: string; } | null} */ data: { /** * メールアドレス確認プロセスのステータス。 * 指定可能な値には "success"、"failure"、"already_verified" などが含まれます。 * このステータスはユーザーに結果を通知するために表示する必要があります。 */ status: string; } | null; /** * この画面で利用可能なナビゲーションリンク。 * @type {string | null} */ loginLink: string | null; }
status
string
null