GraphQL OBJECT

PurchaseItem

Item purchased by the customer.

link Definition

  • type PurchaseItem implements OrderItemInterface {
  • # The subscription item.
  • subscriptionItem: SubscriptionItem
  • # List of deliveries for the purchase item.
  • deliveries: [PurchaseItemDelivery]
  • # Running number of the item in the purchase.
  • 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 purchase item.
  • promotion: Promotion
  • # Tax rate (percentage) applicable in the country.
  • vatRate: Percentage @deprecated( reason: "Renamed to taxRate." )
  • # Tax rate (percentage) applicable in the country.
  • taxRate: Percentage @deprecated( reason: "Please use customerTaxRate or clientTaxRate instead." )
  • # Tax rate (percentage) applicable for the customer in the country.
  • customerTaxRate: Percentage!
  • # Tax rate (percentage) applicable for the client in the country.
  • clientTaxRate: Percentage
  • # 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
  • # Client policy and procedures for regeneration of keys and/or download links.
  • deliveryRenewalPolicy: ClientPolicy
  • # Purchase containing this item.
  • purchase: Purchase
  • # Backup medium jobs related to this item.
  • backupMediumJobs: [BackupMediumJob]
  • # Provides links to obtain a backup medium if available.
  • backupMediumLinks: [String]
  • # Metadata of the purchase item.
  • metaData: PurchasItemeMetaData
  • }