This update action results in the taxedPrice field being added to the Cart when the ExternalAmount TaxMode is used.

interface CartSetCartTotalTaxAction {
    action: "setCartTotalTax";
    externalTaxPortions?: TaxPortionDraft[];
    externalTotalGross: _Money;
}

Properties

action: "setCartTotalTax"
externalTaxPortions?: TaxPortionDraft[]

Set if the externalTotalGross price is a sum of portions with different tax rates.

externalTotalGross: _Money

The Cart's total gross price becoming the totalGross field (totalNet + taxes) on the Cart's taxedPrice.

Generated using TypeDoc