Interface SaveRunsOptions

interface SaveRunsOptions {
    assayId?: number;
    assayName?: string;
    containerPath?: string;
    failure?: RequestFailure<any>;
    protocolName?: string;
    providerName?: string;
    runs: any;
    scope?: any;
    success?: RequestSuccess<any>;
}

Hierarchy (view full)

Properties

assayId?: number

The assay protocol id.

assayName?: string

The name of the assay.

containerPath?: string

Save runs to a specific container. If not specified, the runs will be saved to the current container.

failure?: RequestFailure<any>

This will be called upon failure to complete a request.

protocolName?: string

Protocol name to be used for non-assay backed runs. Currently only SAMPLE_DERIVATION_PROTOCOL is supported.

providerName?: string

The assay provider name.

runs: any

The runs to be saved.

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.

Generated using TypeDoc