Change types that represent data modifications made to the Custom Objects entity.
Change types
Add Property
Change triggered by the Update CustomObject request when a new property is added.
typeString | "AddPropertyChange" |
changeString | "addProperty" |
nextValueAny | Value after the change. |
pathString | Path to the new property that was added. |
Remove Property
Change triggered by the Update CustomObject request when an existing property is removed.
typeString | "RemovePropertyChange" |
changeString | "removeProperty" |
previousValueAny | Value before the change. |
pathString | Path to the property that was removed. |
Set Property
Change triggered by the Update CustomObject request when an existing property is updated.
typeString | "SetPropertyChange" |
changeString | "setProperty" |
previousValueAny | Value before the change. |
nextValueAny | Value after the change. |
pathString | Path to the property that was updated. |
Set Value
Change triggered by the Update CustomObject request when a value of a property is updated.
typeString | "SetValueChange" |
changeString | "setValue" |
previousValueAny | Value before the change. |
nextValueAny | Value after the change. |