import { AccessControlEntry } from './accesscontrolentry.entity'; import { HorselessUri } from './horselessuri.entity'; import { Meronym } from './meronym.entity'; import { Principal } from './principal.entity'; import { Taxon } from './taxon.entity'; export interface Holonym { Id: string; DisplayName?: string; ObjectId?: string; IsSoftDeleted?: boolean; CreatedAt?: Date; JsonValue?: string; JsonSchema?: string; Timestamp: ArrayBuffer; UpdatedAt?: Date; DictionaryKey?: string; PostgresRowVersion: number; ODataEntitySetName?: string; ODataPrefix?: string; IngressAPIHttpRoute?: string; IngressParentHorselessUri?: string; EntityUriId?: string; Description?: string; DeploymentPackageRootNamespace?: string; DeploymentPackageVersion?: string; Meronyms?: Meronym[]; AccessControlEntries?: AccessControlEntry[]; Owners?: Principal[]; Taxons?: Taxon[]; EntityUri?: HorselessUri; }