@dvelop-sdk
    Preparing search index...

    Interface DmsObject

    A d.velop cloud dmsObject.

    interface DmsObject {
        categories: string[];
        dmsObjectId: string;
        getMainFile?: () => Promise<ArrayBuffer>;
        getNotes?: () => Promise<DmsObjectNote[]>;
        getPdfFile?: () => Promise<ArrayBuffer>;
        properties: {
            displayValue?: string;
            key: string;
            value?: string;
            values?: { [key: string]: string };
        }[];
        repositoryId: string;
        searchChildren?: () => Promise<SearchDmsObjectsResultPage>;
        sourceId: string;
    }
    Index

    Properties

    categories: string[]

    Category of the DmsObject

    dmsObjectId: string

    ID of the DmsObject

    getMainFile?: () => Promise<ArrayBuffer>

    Function that returns the DmsObject-file.

    getNotes?: () => Promise<DmsObjectNote[]>

    Function that returns the notes of a DmsObject.

    getPdfFile?: () => Promise<ArrayBuffer>

    Function that returns the DmsObject-pdf.

    properties: {
        displayValue?: string;
        key: string;
        value?: string;
        values?: { [key: string]: string };
    }[]

    Properties of the DmsObject

    Type Declaration

    • OptionaldisplayValue?: string

      Display-Value of the DmsObject-Property

    • key: string

      Key of the DmsObject-Property

    • Optionalvalue?: string

      Value of the DmsObject-Property

    • Optionalvalues?: { [key: string]: string }

      Values of the DmsObject-Property

    repositoryId: string

    ID of the repository

    searchChildren?: () => Promise<SearchDmsObjectsResultPage>

    Function that returns a searchresult of all children.

    sourceId: string

    ID of the source