Change triggered by the Add ProductVariant update action.

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

Properties

catalogData: string
change: string
nextValue: Variant

Value after the change.

previousValue: Variant

Value before the change.

type: "AddVariantChange"