Change triggered by the Update CustomObject request when an existing property is updated.

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

Properties

change: string
nextValue: any

Value after the change.

path: string

Path to the property that was updated.

previousValue: any

Value before the change.

type: "SetPropertyChange"