Interface MoveContainerOptions

interface MoveContainerOptions {
    addAlias?: boolean;
    container?: string;
    containerPath?: string;
    destinationParent?: string;
    failure?: RequestFailure<any>;
    parent?: string;
    parentPath?: string;
    scope?: any;
    success?: RequestSuccess<any>;
}

Hierarchy (view full)

Properties

addAlias?: boolean

Add alias of current container path to container that is being moved (defaults to True).

container?: string
containerPath?: string

The current container path of the container that is going to be moved. Additionally, the container entity id is also valid.

destinationParent?: string

The current container path of the container that is going to be moved. Additionally, the container entity id is also valid.

failure?: RequestFailure<any>

This will be called upon failure to complete a request.

parent?: string
parentPath?: string
scope?: any

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

success?: RequestSuccess<any>

This will be called upon successfully completing a request.

Generated using TypeDoc