ChangeType
Change type enum represents the type of change that has happened in the change event.
enum ChangeType {
CREATE
REPLACE
UPDATE
DELETE
}
Values
ChangeType.CREATE
CREATE indicates that the change was not there before, and has been created with the received input.
ChangeType.REPLACE
REPLACE indicates that the content already existed but has now been replaced by something else.
ChangeType.UPDATE
UPDATE indicates that the content already existed but has not been updated.
ChangeType.DELETE
DELETE indicates that the content existed already but has now been removed.
Member Of
EntityChanges
object ● FieldChange
object