@labkey/api
    Preparing search index...

    Interface GetDomainOptions

    interface GetDomainOptions {
        containerPath?: string;
        domainId?: number;
        failure?: RequestFailure<any>;
        queryName?: string;
        schemaName?: string;
        scope?: any;
        success?: RequestSuccess<DomainDesign>;
    }

    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.

    domainId?: number

    Id of the domain. This is an alternate way to identify the domain. SchemaName and queryName will be ignored if this value is not undefined or null.

    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).

    This will be called upon successfully completing a request.