CartTaxLevel
Tax calculation breakdown by tax rate level.
Represents the tax amounts applied to the cart at a specific tax percentage, including any applicable discounts.
type CartTaxLevel {
taxPercentage: Int!
price: Float!
discount: Float
}
Fields
CartTaxLevel.taxPercentage
● Int!
non-null scalar
Tax rate percentage for this tax level.
The percentage rate applied to calculate tax amounts for items and services subject to this tax level.
CartTaxLevel.price
● Float!
non-null scalar
Total tax amount for this tax level.
Sum of all tax charges applied to cart items and services that fall under this specific tax rate.
CartTaxLevel.discount
● Float
scalar
Total discount amount applied at this tax level.
Sum of all tax-related discounts and reductions that apply to items subject to this tax rate.
Member Of
Cart
object