CheckoutCreateInput
The input fields required to create a checkout.
import { CheckoutCreateInput } from '@daffodil/driver/shopify'
type CheckoutCreateInput = {
allowPartialAddresses?: InputMaybe<Scalars['Boolean']['input']>;
buyerIdentity?: InputMaybe<CheckoutBuyerIdentityInput>;
customAttributes?: InputMaybe<Array<AttributeInput>>;
email?: InputMaybe<Scalars['String']['input']>;
lineItems?: InputMaybe<Array<CheckoutLineItemInput>>;
note?: InputMaybe<Scalars['String']['input']>;
shippingAddress?: InputMaybe<MailingAddressInput>;
}
Type | Options |
---|---|
CheckoutCreateInput | {
allowPartialAddresses?: InputMaybe<Scalars['Boolean']['input']>;
buyerIdentity?: InputMaybe<CheckoutBuyerIdentityInput>;
customAttributes?: InputMaybe |