Interface GetUserPermissionsOptions

interface GetUserPermissionsOptions {
    containerPath?: string;
    failure?: RequestFailure<any>;
    includeSubfolders?: boolean;
    scope?: any;
    success?: RequestSuccess<GetUserPermissionsResponse>;
    userEmail?: string;
    userId?: number;
}

Hierarchy (view full)

Properties

containerPath?: string

An alternate container path to get permissions from. If not specified, the current container path will be used.

failure?: RequestFailure<any>

This will be called upon failure to complete a request.

includeSubfolders?: boolean

Set to true to recurse down the subfolders (defaults to false)

scope?: any

A scoping object for the success and failure callback functions (default to this).

This will be called upon successfully completing a request.

userEmail?: string

The email address (user name) of the user (specify only userId or userEmail, not both)

userId?: number

The id of the user. Omit to get the current user's information

Generated using TypeDoc