CheckoutCreateInput
No description
input CheckoutCreateInput {
lines: [CheckoutLineInput!]!
email: String
shippingAddress: AddressInput
billingAddress: AddressInput
currency: MarketplaceConfigurationCurrencyEnum
}
Fields
CheckoutCreateInput.lines ● [CheckoutLineInput!]! non-null input
A list of checkout lines, each containing information about an item in the checkout.
CheckoutCreateInput.email ● String scalar
The customer's email address.
CheckoutCreateInput.shippingAddress ● AddressInput input
The mailing address to where the checkout will be shipped. Note: the address will be ignored if the checkout doesn't contain shippable items.
CheckoutCreateInput.billingAddress ● AddressInput input
Billing address of the customer.
CheckoutCreateInput.currency ● MarketplaceConfigurationCurrencyEnum enum
Currency for this checkout.
Member Of
checkoutCreate mutation