Change triggered by the Remove ProductVariant update action.

interface RemoveVariantChange {
    catalogData: string;
    change: string;
    nextValue: Variant;
    previousValue: Variant;
    type: "RemoveVariantChange";
}

Properties

catalogData: string
change: string
nextValue: Variant

Value after the change.

previousValue: Variant

Value before the change.

type: "RemoveVariantChange"