> ## Documentation Index
> Fetch the complete documentation index at: https://auth0-feat-acul-js-sdk-1-7-0-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# AvailableCountryCode

```ts Example theme={null}
export interface AvailableCountryCode {
  code: string;
  label: string;
  dialCode: string;
}
```

## Properties

<ParamField body="code" type="string">
  The ISO 3166-1 alpha-2 country code (for example, `"US"`). Submitted as `phoneCountryCode`. Not unique across the list — a country with multiple dial codes contributes one entry per code.
</ParamField>

<ParamField body="dialCode" type="string">
  The dial code with its leading plus (for example, `"+1"`). Display only.
</ParamField>

<ParamField body="label" type="string">
  The country name, localized to the render locale.
</ParamField>
