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

    Interface StagedOrderSetLineItemTaxRateAction

    Can be used if the Cart has the External TaxMode.

    interface StagedOrderSetLineItemTaxRateAction {
        action: "setLineItemTaxRate";
        externalTaxRate?: ExternalTaxRateDraft;
        lineItemId?: string;
        lineItemKey?: string;
        shippingKey?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    action: "setLineItemTaxRate"
    externalTaxRate?: ExternalTaxRateDraft

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

    lineItemId?: string

    id of the LineItem to update. Either lineItemId or lineItemKey is required.

    lineItemKey?: string

    key of the LineItem to update. Either lineItemId or lineItemKey is required.

    shippingKey?: string

    key of the ShippingMethod used for this Line Item. This is required for Carts with Multiple ShippingMode.