// contains only limited subset of available fields import {LocationEntity} from "./location.entity"; export class DocumentEntity { nodeRef: string; nodeType: string; type: string; mimetype: string; isFolder: boolean; isLink: boolean; fileName: string; displayName: string; status: string; title: string; description: string; author: string; createdOn: string; createdBy: string; createdByUser: string; modifiedOn: string; modifiedBy: string; modifiedByUser: string; lockedBy: string; lockedByUser: string; size: number; version: string; contentUrl: string; webdavUrl: string; actionSet: string; tags: string[]; activeWorkflows: string; location: LocationEntity; }