Change triggered by the Set Attribute update action.

interface SetAttributeChange {
    catalogData: string;
    change: string;
    nextValue: AttributeValue;
    previousValue: AttributeValue;
    type: "SetAttributeChange";
}

Properties

catalogData: string
change: string
nextValue: AttributeValue

Value after the change.

previousValue: AttributeValue

Value before the change.

type: "SetAttributeChange"