@gradientedge/commercetools-utils
    Preparing search index...

    Interface CartSetShippingMethodTaxAmountAction

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

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

    Hierarchy (View Summary)

    Index
    action: "setShippingMethodTaxAmount"
    externalTaxAmount?: ExternalTaxAmountDraft

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

    shippingKey?: string

    key of the ShippingMethod to update. This is required and valid only for Carts with Multiple ShippingMode. An InvalidOperation error is returned if shippingKey is provided for Carts with Single ShippingMode, or omitted for Carts with Multiple ShippingMode.