mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
34 lines
778 B
TypeScript
34 lines
778 B
TypeScript
// 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;
|
|
}
|