interface TaxedPriceDraft {
    taxPortions: TaxPortionDraft[];
    totalGross: _Money;
    totalNet: _Money;
    totalTax?: TypedMoneyDraft;
}

Properties

taxPortions: TaxPortionDraft[]

Taxable portions added to the totalGross.

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

Total gross price of the Cart or Order.

totalNet: _Money

Total net price of the Cart or Order.

totalTax?: TypedMoneyDraft

Total tax applicable for the Cart or Order.