@labkey/api
    Preparing search index...

    Interface DropDomainOptions

    interface DropDomainOptions {
        containerPath?: string;
        domainDesign?: any;
        failure?: RequestFailure<any>;
        queryName: string;
        schemaName: string;
        scope?: any;
        success?: RequestSuccess<any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    containerPath?: string

    The container path in which the requested Domain is defined. If not supplied, the current container path will be used.

    domainDesign?: any
    failure?: RequestFailure<any>

    This will be called upon failure to complete a request.

    queryName: string

    The domain query name.

    schemaName: string

    The domain schema name.

    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.