> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# SelectCountryCodeOptions

国番号を選択するオプション

```ts Example theme={null}
export interface SelectCountryCodeOptions {
  /** 国コード（例：'US'、'GB'） */
  country_code: string;
  /** 電話番号のプレフィックス（例：'+1'、'+44'） */
  phone_prefix: string;
  /** その他のカスタムオプション */
  [key: string]: string | number | boolean | undefined;
}
```

<h2 id="indexable">
  Indexable
</h2>

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

その他のカスタムオプション

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

<ParamField body="country_code" type="string">
  国コード (例: 'US'、'GB')
</ParamField>

<ParamField body="phone_prefix" type="string">
  電話番号のプレフィックス (例: '+1'、'+44')
</ParamField>
