# The Location object

### The Location object

```json
{
  "id": "tml_FBakXQG8bQk4Mm",
  "object": "terminal.location",
  "address": {
    "city": "San Francisco",
    "country": "US",
    "line1": "1234 Main Street",
    "line2": "",
    "postal_code": "94111",
    "state": "CA"
  },
  "display_name": "My First Store",
  "livemode": false,
  "metadata": {}
}
```

## Attributes

- `id` (string)
  Unique identifier for the object.

- `object` (string)
  String representing the object’s type. Objects of the same type share the same value.

- [`address`](https://docs.stripe.com/api/terminal/locations/object.md?query=address) (object)
  The full address of the location.

- [`address_kana`](https://docs.stripe.com/api/terminal/locations/object.md?query=address_kana) (object, nullable)
  The Kana variation of the full address of the location (Japan only).

- [`address_kanji`](https://docs.stripe.com/api/terminal/locations/object.md?query=address_kanji) (object, nullable)
  The Kanji variation of the full address of the location (Japan only).

- `configuration_overrides` (string, nullable)
  The ID of a configuration that will be used to customize all readers in this location.

- `display_name` (string)
  The display name of the location.

- `display_name_kana` (string, nullable)
  The Kana variation of the display name of the location.

- `display_name_kanji` (string, nullable)
  The Kanji variation of the display name of the location.

- `livemode` (boolean)
  If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.

- `metadata` (map)
  Set of [key-value pairs](https://docs.stripe.com/docs/api/metadata.md) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

- `phone` (string, nullable)
  The phone number of the location.
