OrderAddress
Contains detailed information about an order's billing and shipping addresses.
type OrderAddress = {
__typename?: 'OrderAddress'; /** The city or town. */
city: Scalars['String']['output']; /** The customer's company. */
company?: Maybe<Scalars['String']['output']>; /** The customer's country. */
country_code?: Maybe<CountryCodeEnum>; /** The fax number. */
fax?: Maybe<Scalars['String']['output']>; /** The first name of the person associated with the shipping/billing address. */
firstname: Scalars['String']['output']; /** The family name of the person associated with the shipping/billing address. */
lastname: Scalars['String']['output']; /** The middle name of the person associated with the shipping/billing address. */
middlename?: Maybe<Scalars['String']['output']>; /** The customer's ZIP or postal code. */
postcode?: Maybe<Scalars['String']['output']>; /** An honorific, such as Dr., Mr., or Mrs. */
prefix?: Maybe<Scalars['String']['output']>; /** The state or province name. */
region?: Maybe<Scalars['String']['output']>; /** The unique ID for a `Region` object of a pre-defined region. */
region_id?: Maybe<Scalars['ID']['output']>; /** An array of strings that define the street number and name. */
street: Array<Maybe<Scalars['String']['output']>>; /** A value such as Sr., Jr., or III. */
suffix?: Maybe<Scalars['String']['output']>; /** The telephone number. */
telephone?: Maybe<Scalars['String']['output']>; /** The customer's Value-added tax (VAT) number (for corporate customers). */
vat_id?: Maybe<Scalars['String']['output']>;
};