Interface RemoveVialsFromRequestOptions

interface RemoveVialsFromRequestOptions {
    containerPath?: string;
    failure?: RequestFailure<any>;
    idType?: string;
    requestId: number;
    scope?: any;
    success?: RequestSuccess<any>;
    vialIdArray: any[];
}

Hierarchy (view full)

Properties

containerPath?: string
failure?: RequestFailure<any>

This will be called upon failure to complete a request.

idType?: string
requestId: number
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.

vialIdArray: any[]

Generated using TypeDoc