rmapi-js
    Preparing search index...

    Interface RawListEntry

    the low-level entry corresponding to a collection of files

    A collection could be for the root collection, or for an individual document, which is often a collection of files. If an entry represents a collection of files, the high level entry will have the same hash and id as the low-level entry for that collection.

    interface RawListEntry {
        hash: string;
        id: string;
        size: number;
        subfiles: number;
        type: 80000000;
    }
    Index

    Properties

    Properties

    hash: string

    the hash of the collection this points to

    id: string

    the unique id of the collection

    size: number

    the total size of everything in the collection

    subfiles: number

    the number of subfiles

    type: 80000000

    collection type (80000000)