OBJECT

CheckoutPriceSummary

Price information about an item in the checkout process.

link GraphQL Schema definition

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