@labkey/api
    Preparing search index...

    Interface GetStudyNabRunsOptions

    interface GetStudyNabRunsOptions {
        calculateNeut?: boolean;
        containerPath?: string;
        failure?: RequestFailure<any>;
        includeFitParameters?: boolean;
        includeStats?: boolean;
        includeWells?: boolean;
        objectIds: (string | number)[];
        scope?: any;
        success?: RequestSuccess<any>;
        timeout?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    calculateNeut?: boolean

    Whether neutralization should be calculated on the server.

    containerPath?: string

    The path to the study container containing the NAb summary, if different than the current container. If not supplied, the current container's path will be used.

    failure?: RequestFailure<any>

    This will be called upon failure to complete a request.

    includeFitParameters?: boolean

    Whether the parameters used in the neutralization curve fitting calculation should be included in the response.

    includeStats?: boolean

    Whether statistics (standard deviation, max, min, etc.) should be returned with calculations and well data.

    includeWells?: boolean

    Whether well-level data should be included in the response.

    objectIds: (string | number)[]

    The object Ids for the NAb data rows that have been copied to the study.

    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.

    timeout?: number

    The maximum number of milliseconds to allow for this operation before generating a timeout error (defaults to 30000).