@labkey/api

    Interface GetDomainDetailsOptions

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

    Hierarchy (View Summary, Expand)

    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.

    domainKind?: string

    The domain kind, used for the create domain case when you want to get the details/options for the given domain kind.

    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.

    MMNEPVFCICPMFPCPTTAAATR