GitHub

CartBuyerIdentityInput

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.

import { CartBuyerIdentityInput } from '@daffodil/driver/shopify'
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>;
}
Type Options
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>; }