Interface PermissionsContainer

interface PermissionsContainer {
    children?: PermissionsContainer[];
    groups: Group[];
    id: string;
    isInheritingPerms?: boolean;
    name: string;
    path: string;
}

Hierarchy (view full)

Properties

If includeSubfolders is true, then this will contain child containers.

groups: Group[]

An array of group objects.

id: string

The container id.

isInheritingPerms?: boolean

True if the container is inheriting permissions from its parent. This is not always provided.

name: string

The container name.

path: string

The container path.

Generated using TypeDoc