File: //proc/self/cwd/wp-content/plugins/woocommerce-square/vendor/square/square/doc/models/tax-ids.md
# Tax Ids
Identifiers for the location used by various governments for tax purposes.
## Structure
`TaxIds`
## Fields
| Name | Type | Tags | Description | Getter | Setter |
| --- | --- | --- | --- | --- | --- |
| `euVat` | `?string` | Optional | The EU VAT number for this location. For example, `IE3426675K`.<br>If the EU VAT number is present, it is well-formed and has been<br>validated with VIES, the VAT Information Exchange System. | getEuVat(): ?string | setEuVat(?string euVat): void |
| `frSiret` | `?string` | Optional | The SIRET (Système d'Identification du Répertoire des Entreprises et de leurs Etablissements)<br>number is a 14-digit code issued by the French INSEE. For example, `39922799000021`. | getFrSiret(): ?string | setFrSiret(?string frSiret): void |
| `frNaf` | `?string` | Optional | The French government uses the NAF (Nomenclature des Activités Françaises) to display and<br>track economic statistical data. This is also called the APE (Activite Principale de l’Entreprise) code.<br>For example, `6910Z`. | getFrNaf(): ?string | setFrNaf(?string frNaf): void |
| `esNif` | `?string` | Optional | The NIF (Numero de Identificacion Fiscal) number is a nine-character tax identifier used in Spain.<br>If it is present, it has been validated. For example, `73628495A`. | getEsNif(): ?string | setEsNif(?string esNif): void |
| `jpQii` | `?string` | Optional | The QII (Qualified Invoice Issuer) number is a 14-character tax identifier used in Japan.<br>For example, `T1234567890123`. | getJpQii(): ?string | setJpQii(?string jpQii): void |
## Example (as JSON)
```json
{
"eu_vat": "eu_vat8",
"fr_siret": "fr_siret0",
"fr_naf": "fr_naf0",
"es_nif": "es_nif4",
"jp_qii": "jp_qii0"
}
```