Interface StagedOrderSetCustomLineItemTaxAmountAction

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

Properties

action: "setCustomLineItemTaxAmount"
customLineItemId: string
externalTaxAmount?: ExternalTaxAmountDraft

Cannot be used in LineItemDraft or CustomLineItemDraft.

Can only be set by these update actions:

- [Set LineItem TaxAmount](ctp:api:type:CartSetLineItemTaxAmountAction), [Set CustomLineItem TaxAmount](ctp:api:type:CartSetCustomLineItemTaxAmountAction), or [Set ShippingMethod TaxAmount](ctp:api:type:CartSetShippingMethodTaxAmountAction) on Carts
- [Set LineItem TaxAmount](ctp:api:type:OrderEditSetLineItemTaxAmountAction), [Set CustomLineItem TaxAmount](ctp:api:type:OrderEditSetCustomLineItemTaxAmountAction), or [Set ShippingMethod TaxAmount](ctp:api:type:OrderEditSetShippingMethodTaxAmountAction) on Order Edits

Generated using TypeDoc