The common properties for responses to individual requests within a batch.

BatchResponse

interface BatchResponse {
    headers: { [key: string]: string };
    status: HttpStatusLine;
}

Properties

Properties

headers: { [key: string]: string }

A mapping of additional HTTP headers to send or receive for an individual request within a batch.

BatchResponse

BatchResponse