The HTTP status line associated with the response for an individual request within a batch. For more information, refer to RFC 2616.

HttpStatusLine

interface HttpStatusLine {
    reasonPhrase?: string;
    statusCode?: number;
}

Properties

reasonPhrase?: string

The HTTP response reason phrase.

HttpStatusLine

statusCode?: number

The HTTP response status code.

HttpStatusLine