Change triggered by the Change Quantity update action.

interface ChangeQuantityChange {
    change: string;
    nextValue: InventoryQuantityValue;
    previousValue: InventoryQuantityValue;
    type: "ChangeQuantityChange";
}

Properties

change: string

Value after the change.

previousValue: InventoryQuantityValue

Value before the change.

type: "ChangeQuantityChange"