Change triggered by the Update CustomObject request when a value of a property is updated.

interface SetValueChange {
    change: string;
    nextValue: any;
    previousValue: any;
    type: "SetValueChange";
}

Properties

change: string
nextValue: any

Value after the change.

previousValue: any

Value before the change.

type: "SetValueChange"