Interface DeleteQueryViewOptions

interface DeleteQueryViewOptions {
    containerPath?: string;
    failure?: RequestFailure<any>;
    queryName: string;
    revert?: boolean;
    schemaName: string;
    scope?: any;
    success?: RequestSuccess<any>;
    viewName?: string;
}

Hierarchy (view full)

Properties

containerPath?: string
failure?: RequestFailure<any>

This will be called upon failure to complete a request.

queryName: string
revert?: boolean
schemaName: string
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.

viewName?: string

Generated using TypeDoc