# 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` (object) The full address of the location. - `address.city` (string, nullable) City, district, suburb, town, or village. - `address.country` (string, nullable) Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)). - `address.line1` (string, nullable) Address line 1 (e.g., street, PO Box, or company name). - `address.line2` (string, nullable) Address line 2 (e.g., apartment, suite, unit, or building). - `address.postal_code` (string, nullable) ZIP or postal code. - `address.state` (string, nullable) State, county, province, or region. - `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. - `livemode` (boolean) Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode. - `metadata` (object) 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.