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

# LoginPayloadOptions

ログイン操作のオプション

```ts Example theme={null}
export interface LoginOptions {
  /** ログインに使用するusername/メールアドレス */
  username: string;
  /** 認証用パスワード */
  password: string;
  /** 必要な場合に使用するオプションのキャプチャ値 */
  captcha?: string;
  /** 追加のカスタムオプション */
  [key: string]: string | number | boolean | undefined;
}
```

<div id="indexable">
  ## Indexable
</div>

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

任意の追加カスタムオプション

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

<ParamField body="captcha?" type="string">
  必要に応じて指定する任意のキャプチャ値
</ParamField>

<ParamField body="password" type="string">
  認証に使用するパスワード
</ParamField>

<ParamField body="username" type="string">
  ログインに使用する username またはメールアドレス
</ParamField>
