import { AccessControlEntry } from './accesscontrolentry.entity'; import { HorselessContent } from './horselesscontent.entity'; import { HorselessUri } from './horselessuri.entity'; import { HorselessView } from './horselessview.entity'; import { MIMEType } from './mimetype.entity'; import { Principal } from './principal.entity'; export interface Placeholder { Id: string; DisplayName?: string; ObjectId?: string; IsSoftDeleted?: boolean; CreatedAt?: Date; IsPublished?: boolean; Description?: string; Timestamp: ArrayBuffer; UpdatedAt?: Date; DictionaryKey?: string; ShortName?: string; PlaceHolderType?: string; HorselessViewId?: string; HorselessContentId?: string; MimeTypeName?: string; MimeTypeId?: string; PostgresRowVersion: number; ODataEntitySetName?: string; ODataPrefix?: string; IngressAPIHttpRoute?: string; IngressParentHorselessUri?: string; EntityUriId?: string; DeploymentPackageRootNamespace?: string; DeploymentPackageVersion?: string; AccessControlEntries?: AccessControlEntry[]; Owners?: Principal[]; HorselessView?: HorselessView; HorselessContent?: HorselessContent; MimeType?: MIMEType; EntityUri?: HorselessUri; }