Values
JSON Structure
The general entity attributes are inherited from the base entity object, which is defined by the IEntity class (see entity.ts file).
Definition of Value data object can be found in value.ts file.
export interface IValue extends IEntity {
class: EntityEnums.Class.Value;
data: IValueData;
}
export interface IValueData {
logicalType: EntityEnums.LogicalType;
}
No comments to display
No comments to display