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

1type ProductPurchase {
2
3# The price and tax breakdown for the purchase.
4checkoutPriceSummary: CheckoutPriceSummary
5
6# Error when the final price could not be retrieved for a product.
7errorCode: ProductPurchaseErrorCode
8
9# The region from which the tax was calculated.
10taxRegion: TaxRegion
11
12}