Skip to main content

Groups

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 Group data object can be found in group.ts file.

export interface IGroup extends IEntity {
  class: EntityEnums.Class.Group;
  data: IGroupData;
}

export interface IGroupData {
  logicalType: EntityEnums.LogicalType;
}