INPUT_OBJECT
CartInput
Attributes for creating or updating a cart.
link GraphQL Schema definition
- input CartInput {
- # Shipping address for the items in the cart. Required for checkout.
- AddressInput :
- # Billing address for the cart. Required for checkout.
- AddressInput :
- # The first name of the user who owns the cart. Required for checkout.
- String :
- # The surname of the user who owns the cart. Required for checkout.
- String :
- # The email address of the user who owns the cart. Required for checkout.
- String :
- # A message that will be sent to the seller.
- String :
- # The company name of the user who owns the cart.
- String :
- # The phone number of the user who owns the cart. Required for checkout.
- String :
- # A coupon code that has been applied to the cart. Will return an error if the
- # coupon is invalid
- String :
- # The first name of the bill recipient. Required for checkout.
- String :
- # The surname of the bill recipient. Required for checkout.
- String :
- # The phone number of the bill recipient. Required for checkout.
- String :
- # The company name of the bill recipient.
- String :
- # The email address of the bill recipient. Required for checkout.
- String :
- # Is this order a gift order? Defaults to false.
- Boolean :
- # A message that will be sent to the gift recipient.
- String :
- }