GraphQL INTERFACE

OrderItemInterface

link Definition

  • interface OrderItemInterface {
  • # Running number of the item.
  • runningNumber: Int
  • # Number of items.
  • quantity: Int
  • # Product details for the item.
  • productInformation: ProductInformation
  • # Coupon code for a promotion applied to item(s) in the cart.
  • couponCode: String
  • # Promotion associated with the item.
  • promotion: Promotion
  • # Pricing information that the customer receives during the purchase process.
  • customerPricing: Pricing
  • # Pricing information that your company set up in the cleverbridge platform.
  • clientPricing: Pricing
  • }