GraphQL INPUT_OBJECT

SubscriptionCartInput

Input for shopping cart preview for a subscription.

link Definition

  • input SubscriptionCartInput {
  • # Coupon code for a promotion applied to item(s) in the cart.
  • couponCode: String
  • # Id to return for this Cart.
  • id: String
  • # List of product and pricing items.
  • items: [SubscriptionCartItemInput]
  • # Two-character language iso code for localized output, e.g. amount and currency.
  • languageId: CheckoutLanguageEnum
  • # Price configuration that you would like to apply.
  • priceRule: String
  • # ID of the subscription.
  • subscriptionId: Int!
  • # ID of the session.
  • sessionId: String
  • # Package discount that should be applied to the cart.
  • packageDiscount: String
  • # If it is used in upgrade context, mode in which the upgrade should be performed.
  • upgradeMode: SubscriptionUpgradeModeEnum
  • }

link Required by