HttpRequest
data class HttpRequest(val method: HttpMethod, val url: Url, val headers: Headers = Headers.Empty, val body: ByteArray? = null)
Single HTTP request issued by the HttpTransport layer.
Constructors
Link copied to clipboard
constructor(method: HttpMethod, url: Url, headers: Headers = Headers.Empty, body: ByteArray? = null)