# customer\_tax\_location

From **Stripe API**.

- Type: `object`

## Properties

### `country`

- Required: true
- Type: `string`
- maxLength: `5000`

The customer's country as identified by Stripe Tax.

### `source`

- Required: true
- Type: `string`
- Allowed values: `"billing_address"`, `"ip_address"`, `"payment_method"`, `"shipping_destination"`

The data source used to infer the customer's location.

### `state`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

The customer's state, county, province, or region as identified by Stripe Tax.

## JSON Schema

```json
{"properties":{"country":{"description":"The customer's country as identified by Stripe Tax.","maxLength":5000,"type":"string"},"source":{"description":"The data source used to infer the customer's location.","enum":["billing_address","ip_address","payment_method","shipping_destination"],"type":"string"},"state":{"description":"The customer's state, county, province, or region as identified by Stripe Tax.","maxLength":5000,"nullable":true,"type":"string"}},"required":["country","source"],"title":"CustomerTaxLocation","type":"object","x-expandableFields":[]}
```
