Interface CartSetCustomLineItemTaxAmountAction

Can be used if the Cart has the ExternalAmount TaxMode.

interface CartSetCustomLineItemTaxAmountAction {
    action: "setCustomLineItemTaxAmount";
    customLineItemId: string;
    externalTaxAmount?: ExternalTaxAmountDraft;
}

Properties

action: "setCustomLineItemTaxAmount"
customLineItemId: string

id of the CustomLineItem to update.

externalTaxAmount?: ExternalTaxAmountDraft

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

Generated using TypeDoc