ShippingAddressInput
Defines a single shipping address.
type ShippingAddressInput = {
address?: InputMaybe<CartAddressInput>; /** An ID from the customer's address book that uniquely identifies the address to be used for shipping. */
customer_address_id?: InputMaybe<Scalars['Int']['input']>; /** Text provided by the shopper. */
customer_notes?: InputMaybe<Scalars['String']['input']>; /** The code of Pickup Location which will be used for In-Store Pickup. */
pickup_location_code?: InputMaybe<Scalars['String']['input']>;
};