Home > @infiniteobjects/shopify-data-manager > AdminTypes > CompanyAddress
Represents a billing or shipping address for a company location.
Signature:
export interface CompanyAddress extends Node
Extends: Node
Property | Modifiers | Type | Description |
---|---|---|---|
address1 | Scalars[‘String’][‘output’] | The first line of the address. Typically the street address or PO Box number. | |
address2? | Maybe<Scalars[‘String’][‘output’]> | (Optional) The second line of the address. Typically the number of the apartment, suite, or unit. | |
city? | Maybe<Scalars[‘String’][‘output’]> | (Optional) The name of the city, district, village, or town. | |
companyName | Scalars[‘String’][‘output’] | The name of the company. | |
country? | Maybe<Scalars[‘String’][‘output’]> | (Optional) The name of the country. | |
countryCode | CountryCode | `${CountryCode}` | The two-letter code for the country of the address. For example, US. | |
createdAt | Scalars[‘DateTime’][‘output’] | The date and time ([ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601)) at which the company address was created. | |
formattedAddress | Array<Scalars[‘String’][‘output’]> | The formatted version of the address. | |
formattedArea? | Maybe<Scalars[‘String’][‘output’]> | (Optional) A comma-separated list of the values for city, province, and country. | |
id | Scalars[‘ID’][‘output’] | A globally-unique ID. | |
phone? | Maybe<Scalars[‘String’][‘output’]> | (Optional) A unique phone number for the customer. Formatted using E.164 standard. For example, _+16135551111_. | |
province? | Maybe<Scalars[‘String’][‘output’]> | (Optional) The region of the address, such as the province, state, or district. | |
recipient? | Maybe<Scalars[‘String’][‘output’]> | (Optional) The identity of the recipient e.g. ‘Receiving Department’. | |
updatedAt | Scalars[‘DateTime’][‘output’] | The date and time ([ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601)) at which the company address was last updated. | |
zip? | Maybe<Scalars[‘String’][‘output’]> | (Optional) The zip or postal code of the address. | |
zoneCode? | Maybe<Scalars[‘String’][‘output’]> | (Optional) The two-letter code for the region. For example, ON. |