interface IGetOptions {
    failure?: RequestFailure<any>;
    name?: string;
    queryName?: string;
    reportId?: any;
    schemaName?: string;
    scope?: any;
    success?: RequestSuccess<VisualizationGetResponse>;
}

Hierarchy (view full)

Properties

failure?: RequestFailure<any>

This will be called upon failure to complete a request.

name?: string
queryName?: string

Optional, but required if config.schemaName is provided. Limits the search for the visualization to a specific schema and query. Note that visualization names are unique within a container (regardless of schema and query), so these additional optional parameters are only useful in a small number of circumstances.

reportId?: any
schemaName?: string

Optional, but required if config.queryName is provided. Limits the search for the visualization to a specific schema and query. Note that visualization names are unique within a container (regardless of schema and query), so these additional optional parameters are only useful in a small number of circumstances.

scope?: any

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

This will be called upon successfully completing a request.

Generated using TypeDoc