interface TaxedPrice {
    taxPortions: TaxPortion[];
    totalGross: CentPrecisionMoney;
    totalNet: CentPrecisionMoney;
    totalTax?: CentPrecisionMoney;
}

Properties

taxPortions: TaxPortion[]

Taxable portions added to the total net price.

Calculated from the [TaxRates](ctp:api:type:TaxRate).
totalGross: CentPrecisionMoney

Total gross price of the Cart or Order.

Total net price of the Cart or Order.

Total tax applicable for the Cart or Order.

Automatically calculated as the difference between the `totalGross` and `totalNet` values.

Generated using TypeDoc