Package version:

Contains the batch query response and the headers, id, and status of the request

interface BatchQueryResponse {
    body?: BatchQueryResults;
    headers?: any;
    id?: string;
    status?: number;
}

Properties

Contains the tables, columns & rows resulting from a query.

headers?: any

Dictionary of

id?: string

Unique ID corresponding to each request in the batch.

status?: number

The HTTP status code of the response.