edr-models
Version:
edr modules
19 lines (18 loc) • 532 B
TypeScript
import { EdrObjectType } from '../enums/edr-object-type.enum';
import { EntityType } from '../enums/entity-type.enum';
import { Label } from './label.model';
import { Comment } from './comment.model';
export interface EdrObject {
id: string;
type: EdrObjectType;
name?: string;
comments?: Comment[];
sourceId?: string;
labels?: Label[];
entityData?: EntityData;
aggregatedObjectsIds?: string[];
}
export interface EntityData {
entityType?: EntityType;
entityMd5?: string;
}