@rgwch/mayan_edms-api
    Preparing search index...

    Type Alias Document

    A Mayan EDMS Document. A document by itself has no meaning. It is just a container for one or more files. A document can be a single page or a multi-page document. It can be a PDF, an image, or any other file type. A document can have multiple versions. A document can have multiple tags and exist in multiple cabinets. A document has exactly one document type.

    type Document = {
        datetime_created: string;
        description: string;
        document_change_type_url: string;
        document_type: DocumentType;
        file_latest: DocumentFile;
        file_list_url: string;
        id: number;
        label: string;
        language: string;
        url: string;
        uuid: string;
        version_active: DocumentVersion;
        version_list_url: string;
    }
    Index

    Properties

    datetime_created: string
    description: string
    document_change_type_url: string
    document_type: DocumentType
    file_latest: DocumentFile
    file_list_url: string
    id: number
    label: string
    language: string
    url: string
    uuid: string
    version_active: DocumentVersion
    version_list_url: string