Interface DeleteGroupOptions

interface DeleteGroupOptions {
    containerPath?: string;
    failure?: RequestFailure<any>;
    groupId: number;
    scope?: any;
    success?: RequestSuccess<{
        deleted: 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.

groupId: number

The id of the group to delete

scope?: any

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

success?: RequestSuccess<{
    deleted: number;
}>

This will be called upon successfully completing a request.

Type declaration

  • deleted: number

Generated using TypeDoc