Change triggered by the Update CustomObject request when a new property is added.

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

Properties

change: string
nextValue: any

Value after the change.

path: string

Path to the new property that was added.

type: "AddPropertyChange"