Skip to content

Entity

interface Entity {
eClass?: string;
id?: string;
name?: string;
type?: string;
status?: Status;
tags?: string[];
attributes?: object;
[key: string]: any;
}