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

    Interface OrderCustomLineItemQuantityChangedMessagePayload

    Generated after a successful Change CustomLineItem Quantity update action.

    interface OrderCustomLineItemQuantityChangedMessagePayload {
        customLineItemId: string;
        customLineItemKey?: string;
        oldQuantity: number;
        quantity: number;
        type: "OrderCustomLineItemQuantityChanged";
    }

    Hierarchy (View Summary)

    Index

    Properties

    customLineItemId: string

    Unique identifier of the Custom Line Item.

    customLineItemKey?: string

    User-defined unique identifier of the Custom Line Item.

    oldQuantity: number

    Custom Line Item quantity before the Change Custom Line Item Quantity update action.

    quantity: number

    Custom Line Item quantity after the Change Custom Line Item Quantity update action.

    type: "OrderCustomLineItemQuantityChanged"