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

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

Properties

change: string
path: string

Path to the property that was removed.

previousValue: any

Value before the change.

type: "RemovePropertyChange"