paperless-ngx/src-ui/src/app/data/paperless-document.ts

43 lines
766 B
TypeScript
Raw Normal View History

2020-10-27 01:10:18 +01:00
import { PaperlessCorrespondent } from './paperless-correspondent'
import { ObjectWithId } from './object-with-id'
import { PaperlessTag } from './paperless-tag'
import { PaperlessDocumentType } from './paperless-document-type'
2020-10-30 22:46:43 +01:00
export interface PaperlessDocument extends ObjectWithId {
2020-10-27 01:10:18 +01:00
correspondent_object?: PaperlessCorrespondent
2020-10-27 01:10:18 +01:00
correspondent?: number
2020-10-27 01:10:18 +01:00
document_type_object?: PaperlessDocumentType
2020-10-27 01:10:18 +01:00
document_type?: number
2020-10-27 01:10:18 +01:00
title?: string
content?: string
file_type?: string
tags_objects?: PaperlessTag[]
2020-10-27 01:10:18 +01:00
tags?: number[]
2020-10-27 01:10:18 +01:00
checksum?: string
created?: Date
modified?: Date
added?: Date
file_name?: string
download_url?: string
thumbnail_url?: string
archive_serial_number?: number
}