mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-17 10:13:56 -05:00

Adds custom fields of certain data types, attachable to documents and searchable Co-Authored-By: Trenton H <797416+stumpylog@users.noreply.github.com>
10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
import { ObjectWithId } from './object-with-id'
|
|
import { PaperlessCustomField } from './paperless-custom-field'
|
|
|
|
export interface PaperlessCustomFieldInstance extends ObjectWithId {
|
|
document: number // PaperlessDocument
|
|
field: number // PaperlessCustomField
|
|
created: Date
|
|
value?: any
|
|
}
|