GraphQL OBJECT
PurchaseItem
Item purchased by the customer.
link Definition
- type PurchaseItem implements OrderItemInterface {
 - #   The subscription item.
 - : SubscriptionItem 
 - #   List of deliveries for the purchase item.
 - : [PurchaseItemDelivery] 
 - #   Running number of the item in the purchase.
 - : Int! 
 - #   Number of items.
 - : Int! 
 - #   Product details for the item.
 - : ProductInformation 
 - #   Coupon code for a promotion applied to item(s) in the cart.
 - : String 
 - #   Promotion associated with the purchase item.
 - : Promotion 
 - #   Tax rate (percentage) applicable in the country.
 - : Percentage @deprecated( reason: "Renamed to taxRate."  )
 - #   Tax rate (percentage) applicable in the country.
 - : Percentage @deprecated( reason: "Please use customerTaxRate or clientTaxRate instead."  )
 - #   Tax rate (percentage) applicable for the customer in the country.
 - : Percentage! 
 - #   Tax rate (percentage) applicable for the client in the country.
 - : Percentage 
 - #   Pricing information that the customer receives during the purchase process.
 - : Pricing 
 - #   Pricing information that your company set up in the cleverbridge platform.
 - : Pricing 
 - #   Client policy and procedures for regeneration of keys and/or download links.
 - : ClientPolicy 
 - #   Purchase containing this item.
 - : Purchase 
 - #   Backup medium jobs related to this item.
 - : [BackupMediumJob] 
 - #   Provides links to obtain a backup medium if available.
 - : [String] 
 - #   Metadata of the purchase item.
 - : PurchasItemeMetaData 
 - }