Change triggered automatically by the Add Product or Remove Product update action.

interface SetProductCountChange {
    change: string;
    nextValue: number;
    previousValue: number;
    type: "SetProductCountChange";
}

Properties

change: string
nextValue: number

Value after the change.

previousValue: number

Value before the change.

type: "SetProductCountChange"