OBJECT
ProductPurchase
Contains the product's checkout price and tax info for a purchase and error if a final price cannot be determined.
link GraphQL Schema definition
1 type ProductPurchase { 2 3 # The price and tax breakdown for the purchase. 4 : CheckoutPriceSummary 5 6 # Error when the final price could not be retrieved for a product. 7 : ProductPurchaseErrorCode 8 9 # The region from which the tax was calculated. 10 : TaxRegion 11 12 }