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

    Type Alias FilePermissionList

    FilePermissionList: Record<string, FilePermissionDetails>[]

    List of file permission records returned by listMembers

    Each element in the array is a record where the key is a file UUID and the value contains the file's type and member permissions.

    [
    {
    "12345678-1234-1234-1234-123456789abc": {
    type: "NETWORK",
    members: {
    "user1-uuid": "READ",
    "user2-uuid": "WRITE"
    }
    }
    },
    {
    "87654321-4321-4321-4321-876543210fed": {
    type: "FOLDER",
    members: {
    "user3-uuid": "ADMIN"
    }
    }
    }
    ]