GitHub

CartBuyerIdentityInput

import { CartBuyerIdentityInput } from '@daffodil/driver/shopify'

Specifies the input fields to update the buyer information associated with a cart. Buyer identity is used to determine international pricing and should match the customer's shipping address.

type CartBuyerIdentityInput = {
    companyLocationId?: InputMaybe<Scalars['ID']['input']>;
    countryCode?: InputMaybe<CountryCode>;
    customerAccessToken?: InputMaybe<Scalars['String']['input']>;
    email?: InputMaybe<Scalars['String']['input']>;
    phone?: InputMaybe<Scalars['String']['input']>;
    preferences?: InputMaybe<CartPreferencesInput>;
}