Change triggered by the Change LineItem Quantity update action.

interface ChangeLineItemQuantityChange {
    change: string;
    lineItem: LocalizedString;
    lineItemId: string;
    nextValue: number;
    previousValue: number;
    type: "ChangeLineItemQuantityChange";
}

Properties

change: string
lineItem: LocalizedString

Name of the Product the updated Line Item is based on.

lineItemId: string

id of the updated LineItem.

nextValue: number

Value after the change

previousValue: number

Value before the change.

type: "ChangeLineItemQuantityChange"