Sha256: 76cee9517b6793f8ee96e3aa4142a10eead9d8c39877eafa4376167eedbd08e6
Contents?: true
Size: 804 Bytes
Versions: 35
Compression:
Stored size: 804 Bytes
Contents
import {Endpoint} from './endpoint'; /** * The low level HTTP request object, encapsulating all HTTP header and body data sent by a service request. */ export class HttpRequest { /** * The part of the path excluding the query string. */ pathname(): string; /** * The query string portion of the path. */ search: string; /** * The request body payload. */ body: string; /** * The endpoint for the request. */ endpoint: Endpoint; /** * A map of header keys and their respective values. */ headers: { [key: string]: string; } /** * The HTTP method of the request. */ method: string; /** * The path portion of the URI, e.g., "/list/?start=5&num=10". */ path: string; }
Version data entries
35 entries across 35 versions & 1 rubygems