Interface EntitySequenceActionsOptions

interface EntitySequenceActionsOptions {
    containerPath?: string;
    failure?: RequestFailure<any>;
    kindName?: "SampleSet" | "DataClass";
    newValue?: number;
    rowId?: number;
    scope?: any;
    seqType: "genId" | "rootSampleCount" | "sampleCount";
    success?: RequestSuccess<any>;
}

Hierarchy (view full)

Properties

containerPath?: string
failure?: RequestFailure<any>

This will be called upon failure to complete a request.

kindName?: "SampleSet" | "DataClass"
newValue?: number
rowId?: number
scope?: any

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

seqType: "genId" | "rootSampleCount" | "sampleCount"
success?: RequestSuccess<any>

This will be called upon successfully completing a request.

Generated using TypeDoc