GraphQL INPUT_OBJECT
CartInput
Input for shopping cart preview.
link Definition
- input CartInput {
- #   The Accept-Language header as submitted by the customer's browser.
- : String
- #   List of product and pricing items.
- : [CartItemInput]!
- #   Unique ID of the client account.
- : Int!
- #   Two-character ID of the country for which taxes are calculated. If not set, the 
- #   country is based on the customer's GeoIP location.
- : CountryEnum
- #   Coupon code for a promotion applied to item(s) in the cart.
- : String
- #   Currency code. If not set, the currency is based on the customer's GeoIP 
- #   location.
- : CurrencyEnum
- #   ID to return for this cart.
- : String
- #   Two-character ID of the contact's language. If not set, the language is based on 
- #   the customer's browser settings.
- : LanguageEnum
- #   Price configuration that you would like to apply.
- : String
- #   Contact's postal code.
- : String
- #   The IPv4-Address that corresponds with the country, state, etc. of the customer, 
- #   if CountryIsoCode is not set. Defaults to IP address of request.
- : String
- #   Five- or six-character ID of the customer's country and state based on ISO 
- #   3166-2. It is required for Australia, Brazil, Canada, India, Ireland, Japan, the 
- #   UAE, and the USA.
- : StateEnum
- #   Package discount that should be applied to the cart.
- : String
- }