Can be used if the Cart has the External TaxMode.

interface CartSetCustomLineItemTaxRateAction {
    action: "setCustomLineItemTaxRate";
    customLineItemId: string;
    externalTaxRate?: ExternalTaxRateDraft;
}

Properties

action: "setCustomLineItemTaxRate"
customLineItemId: string

id of the CustomLineItem to update.

externalTaxRate?: ExternalTaxRateDraft

Value to set. If empty, an existing value is removed.

Generated using TypeDoc