OBJECT
CheckoutPriceSummary
Price information about an item in the checkout process.
link GraphQL Schema definition
1 type CheckoutPriceSummary { 2 3 # The currency associated with the price of a subscription product. 4 : Currency! 5 6 # The description associated with pricing information. 7 : String! 8 9 # The discounted total with breakdown by discounted price and tax. 10 : DiscountBreakdown 11 12 # The ISO-4217 wording of deriving price. 13 : Int! 14 15 # Identifier used for caching. 16 : ID! 17 18 # If the tax is already included in price. 19 : Boolean! 20 21 # The numerical price of a subscription product. 22 : Int! 23 24 # Pricing identifier of the item being purchased. 25 : String! 26 27 # The tax rate of localized product. 28 : Int! 29 30 # The total price given price and tax. 31 : Int! 32 33 }