Response1

data class Response1<B, H1>(val status: Status, val body: B, val header1: List<H1>) : Response<B> (source)

Response carrying a body and one header collection.

Constructors

Link copied to clipboard
constructor(status: Status, body: B, header1: List<H1>)

Properties

Link copied to clipboard
val body: B

decoded response body.

Link copied to clipboard

decoded values of the first header definition.

Link copied to clipboard
open override val status: Status

status code returned by the server.