BillingCartAddress
Contains details about the billing address.
type BillingCartAddress = CartAddressInterface & {
__typename?: 'BillingCartAddress'; /** The city specified for the billing or shipping address. */
city: Scalars['String']['output']; /** The company specified for the billing or shipping address. */
company?: Maybe<Scalars['String']['output']>; /** An object containing the country label and code. */
country: CartAddressCountry; /** @deprecated The field is used only in shipping address. */
customer_notes?: Maybe<Scalars['String']['output']>; /** The customer's fax number. */
fax?: Maybe<Scalars['String']['output']>; /** The first name of the customer or guest. */
firstname: Scalars['String']['output']; /** Id of the customer address. */
id?: Maybe<Scalars['Int']['output']>; /** The last name of the customer or guest. */
lastname: Scalars['String']['output']; /** The middle name of the person associated with the billing/shipping address. */
middlename?: Maybe<Scalars['String']['output']>; /** The ZIP or postal code of the billing or shipping address. */
postcode?: Maybe<Scalars['String']['output']>; /** An honorific, such as Dr., Mr., or Mrs. */
prefix?: Maybe<Scalars['String']['output']>; /** An object containing the region label and code. */
region?: Maybe<CartAddressRegion>; /** An array containing the street for the billing or shipping address. */
street: Array<Maybe<Scalars['String']['output']>>; /** A value such as Sr., Jr., or III. */
suffix?: Maybe<Scalars['String']['output']>; /** The telephone number for the billing or shipping address. */
telephone?: Maybe<Scalars['String']['output']>; /** The unique id of the customer address. */
uid: Scalars['String']['output']; /** The VAT company number for billing or shipping address. */
vat_id?: Maybe<Scalars['String']['output']>;
};