@hcl-software/domino-rest-sdk-node
    Preparing search index...

    Type Alias DominoDocumentMeta

    Domino document metadata.

    type DominoDocumentMeta = {
        addedtofile?: string;
        created?: string;
        editable?: boolean;
        lastaccessed?: string;
        lastmodified?: string;
        lastmodifiedinfile?: string;
        noteclass?: string[];
        noteid?: number;
        revision?: string;
        size?: number;
        unid?: string;
        unread?: boolean;
    }
    Index

    Properties

    addedtofile?: string

    Timestamp for when the document was initially created.

    created?: string

    Date of document creation in ISO format.

    editable?: boolean

    Could the user who retrieved a document update it.

    lastaccessed?: string

    Last access date of a document in ISO format.

    lastmodified?: string

    Last update date of a document in ISO format.

    lastmodifiedinfile?: string

    Timestamp for when the document was initially created.

    noteclass?: string[]

    Note class of document.

    noteid?: number

    The note ID of a document, which is uniquely identifies a document within a particular database.

    revision?: string

    This field records the current revision version of document. It's a 32-character hex-encoded string of date. If db config 'requireRevisionToUpdate' is enabled, then revision is required when update document and only update document when revision version is right.

    size?: number

    Size in byte of a document or json result.

    unid?: string

    Universal Id of the document, uniquely identifies a document across all replicas of a database.

    unread?: boolean

    Is the document unread by the current user.