| Class Summary | 
| DetailedItemPrice | Represents a breakdown of a CommerceItem's price. | 
| ItemPrice | Contains the following information about the price of a CommerceItem:
 
   commerceItemId, the ID of the item
   skuId, the catalog sku ID
   productid, the product ID
   quantity, the number to be priced
   amount, the total price of the items
   discounted, boolean indicating if the item was discounted
   listPrice is the base price, before any modifications. | 
| ItemPriceSummary | Contains the following information about the price of a CommerceItem:
 
  commerceItemId, the ID of the item
  skuId, the catalog sku ID
  productid, the product ID
  quantity, the number to be priced
  amount, the total price of the items | 
| OrderPrice | Contains the following information about the price of an Order:
 
  orderId, the ID of the order
  currencyCode, the type of currency
  rawSubtotal, the undiscounted subtotal of the order
  subtotal, the discounted subtotal of the order
  tax, the tax on the order
  shipping, the shipping cost of the order
  total, the current working total, including all discounts
  discountAmount, the total amount of order discounts
  discounted, boolean indicating if the order was discounted
  adjustments, an array of all the discounts
  taxPrice, an object describing the taxes
  shippingPrices, an array of all the shipping costs
  itemPrices, an array of all the item costs | 
| OrderPriceSummary | Contains the following information about the price of an Order:
 
  orderId, the ID of the order
  currencyCode, the type of currency
  tax, the tax on the order
  shipping, the shipping cost of the order
  totalPrice, the current working total, including all discounts
  shippingPriceSummary, an array of all the shipping costs
  itemPriceSummary, an array of all the item costs | 
| PriceAdjustment | Represents an element of a price's audit trail. | 
| ShippingPrice | Contains the following information about the shipping costs of a ShippingGroup:
 
  shippingGroupId, the ID of the shipping group
  amount, the total cost to ship the items in this group
  discounted, boolean indicating if any items in this group have been discounted
  rawShipping, the shipping costs before any discounts
  subtotal, the subtotal of the items in this shipping group
  taxableSubtotal, the taxable subtotal of the items in this shipping group
  nonTaxableSubtotal, the nontaxable subtotal of the items in this shipping group
  tax, the total tax on all items in this shipping group | 
| ShippingPriceSubtotal | Contains the following information about the shipping costs of a ShippingGroup:
 
  rawSubtotal, the total of the items in this group before discounts
  amount, the total cost of the items in this group | 
| ShippingPriceSummary | Contains the following information about the shipping costs of a ShippingGroup:
 
  shippingGroupId, the ID of the shipping group
  amount, the total cost to ship the items in this group | 
| TaxPrice | Contains the following information about the taxes on an Order:
 
  amount, the total taxes
  cityTax, the city taxes
  countyTax, the county taxes
  stateTax, the state taxes
  districtTax, the district taxes
  countryTax, the country taxes
  adjustments, the tax discounts |