Interface CreateGroupOptions

interface CreateGroupOptions {
    containerPath?: string;
    failure?: RequestFailure<any>;
    groupName: string;
    scope?: any;
    success?: RequestSuccess<CreateGroupResponse>;
}

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.

groupName: string

The name of the group to create

scope?: any

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

This will be called upon successfully completing a request.

Generated using TypeDoc