Interface Response

The representation of a HTTP response.

interface Response {
    ctx: Context;
    headers: Header;
    request: Request;
    status_code: number;
}

Properties

ctx: Context

A context between a Request and a Response.

headers: Header

Contains the Response's HTTP headers.

request: Request

The Request object of the response.

status_code: number

the status code of the Response.