@labkey/api
    Preparing search index...

    Interface UpdateDomainOptions

    interface UpdateDomainOptions {
        containerPath?: string;
        createFields?: [];
        deleteFields?: number[];
        domainId: number;
        failure?: RequestFailure<any>;
        includeWarnings?: boolean;
        scope?: any;
        success?: RequestSuccess<any>;
        updateFields?: [];
    }

    Hierarchy (View Summary)

    Index

    Properties

    containerPath?: string
    createFields?: []
    deleteFields?: number[]
    domainId: number
    failure?: RequestFailure<any>

    This will be called upon failure to complete a request.

    includeWarnings?: boolean
    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.

    updateFields?: []