@labkey/api
    Preparing search index...

    Interface CreateContainerOptions

    interface CreateContainerOptions {
        containerPath?: string;
        description?: string;
        failure?: RequestFailure<any>;
        folderType?: string;
        isWorkbook?: boolean;
        name: string;
        scope?: any;
        success?: RequestSuccess<Container>;
        title?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    containerPath?: string

    An alternate container in which to create a new container. If not specified, the current container path will be used.

    description?: string

    The description of the container, used primarily for workbooks.

    failure?: RequestFailure<any>

    This will be called upon failure to complete a request.

    folderType?: string

    The name of the folder type to be applied.

    isWorkbook?: boolean

    Whether this a workbook should be created. Defaults to false.

    name: string

    Required for projects or folders. The name of the container.

    scope?: any

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

    This will be called upon successfully completing a request.

    title?: string

    The title of the container, used primarily for workbooks.