> ## 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.

# ContinueWithCodeOptionPayload

ContinueWithCodeOptions
description Login Email Verification 画面の `continueWithCode` メソッドで使用するオプション。
この操作は、ユーザーがメールで受け取った確認コードを送信し、
認証フローを進める際に使用されます。

```ts Example theme={null}
export interface ContinueWithCodeOptions extends CustomOptions {
  /**
   * ユーザーのメールアドレスに送信された確認コード。通常、ユーザーがフォームに入力する短い数字または英数字の文字列です。
   * @type {string}
   * @example "123456"
   * @example "ABCXYZ"
   */
  code: string;
}
```

<div id="indexable">
  ## インデックス可能
</div>

\[`key`: `string`]: `string` | `number` | `boolean` | `undefined`

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

<ParamField body="code" type="string">
  ユーザーのメールアドレスに送信される確認コードです。通常は、ユーザーがフォームに入力する短い数字または英数字の文字列です。

  <CodeGroup>
    ```ts Example 1 theme={null}
    "123456"
    ```

    ```ts Example 2 theme={null}
    "ABCXYZ"
    ```
  </CodeGroup>
</ParamField>
