NDEx JavaScript Client API Reference - v0.6.0-alpha.5
    Preparing search index...

    Interface FileListItem

    Items in a file list returned for a folder or user account

    interface FileListItem {
        uuid: string;
        name?: string;
        type: NDExFileType;
        modificationTime: number;
        attributes: any;
        updatedBy?: string;
        owner?: string;
        ownerUUID?: string;
        visibility?: Visibility;
        edges?: number;
        permission?: Permission;
        isReadOnly?: boolean;
        isShared?: boolean;
        warnings?: string[];
        isCompleted?: boolean;
        errorMessage?: string;
        isValid?: boolean;
        DOI: string;
    }
    Index

    Properties

    uuid: string

    Unique identifier of the file

    name?: string

    Name of the file (optional for some items)

    Type of the file (folder, network, or shortcut)

    modificationTime: number

    Last modification timestamp

    attributes: any

    Additional attributes associated with the file

    updatedBy?: string

    Username of the user who last updated the file (optional)

    owner?: string
    ownerUUID?: string
    visibility?: Visibility
    edges?: number
    permission?: Permission
    isReadOnly?: boolean

    Whether the file is read-only (networks only, optional)

    isShared?: boolean

    Whether the file is shared (optional)

    warnings?: string[]

    Array of warning messages (networks only, optional)

    isCompleted?: boolean

    Whether the file processing is completed (networks only, optional)

    errorMessage?: string

    Error message if file has errors (optional)

    isValid?: boolean
    DOI: string