Interface AddSpecimensToRequestOptions

interface AddSpecimensToRequestOptions {
    containerPath?: string;
    failure?: RequestFailure<any>;
    preferredLocation: number;
    requestId: number;
    scope?: any;
    specimenHashArray: any[];
    success?: RequestSuccess<any>;
}

Hierarchy (view full)

Properties

containerPath?: string
failure?: RequestFailure<any>

This will be called upon failure to complete a request.

preferredLocation: number
requestId: number
scope?: any

A scoping object for the success and failure callback functions (default to this).

specimenHashArray: any[]
success?: RequestSuccess<any>

This will be called upon successfully completing a request.

Generated using TypeDoc