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

    Interface CartSetShippingMethodTaxRateAction

    A Shipping Method Tax Rate can be set if the Cart has the External TaxMode.

    interface CartSetShippingMethodTaxRateAction {
        action: "setShippingMethodTaxRate";
        externalTaxRate?: ExternalTaxRateDraft;
        shippingKey?: string;
    }

    Hierarchy (View Summary)

    Index
    action: "setShippingMethodTaxRate"
    externalTaxRate?: ExternalTaxRateDraft

    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.