Interface SaveMaterialsOptions

interface SaveMaterialsOptions {
    failure?: RequestFailure<any>;
    materials: any;
    name: string;
    scope?: any;
    success?: RequestSuccess<any>;
}

Hierarchy (view full)

Properties

failure?: RequestFailure<any>

This will be called upon failure to complete a request.

materials: any

An array of LABKEY.Exp.Material objects to be saved.

name: string

Name of the sample set.

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.