Interface StagedOrderSetShippingMethodTaxAmountAction

A Shipping Method tax amount can be set if the Cart has the ExternalAmount TaxMode.

interface StagedOrderSetShippingMethodTaxAmountAction {
    action: "setShippingMethodTaxAmount";
    externalTaxAmount?: ExternalTaxAmountDraft;
    shippingKey?: string;
}

Properties

action: "setShippingMethodTaxAmount"
externalTaxAmount?: ExternalTaxAmountDraft

Value to set. If empty, any existing value will be removed.

shippingKey?: string

key of the ShippingMethod to update. This is required for Orders with Multiple ShippingMode.