EntityDiffAnalyserResult
Description
Represents all the changes happened with IdEntity with information what kind of change was done with Entity.
Basically, it is a holder for three excluding diff objects: created
,updated
, deleted
. (Note: The field level constraints listed here might not cover all the constraints on the field. Additional constraints might exist.)
Model Properties
Property | Required | Type | Description | |||
---|---|---|---|---|---|---|
created | False | object | Optional. If IdEntity was created compared to its other state, this field's value is not null and it holds all the diff details of comparison. | |||
updated | False | object | Optional. If IdEntity was modified compared to its other state, this field's value is not null and it holds all the diff details of comparison. | |||
deleted | False | object | Optional. If IdEntity was deleted compared to its other state, this field's value is not null and it holds all the diff details of comparison. | |||
type | True | string | A UTF8 string, all letters lower-case, that represents the class-type. This corresponds to the class name. |