NetworkResponse

constructor(request: NetworkRequest, code: Int = 200, requestMillis: Long = 0, responseMillis: Long = 0, headers: NetworkHeaders = NetworkHeaders.EMPTY, body: NetworkResponseBody? = null, delegate: Any? = null)

Parameters

request

The NetworkRequest that was executed to create this response.

code

The HTTP response code.

requestMillis

Timestamp of when the request was launched.

responseMillis

Timestamp of when the response was received.

headers

The HTTP headers.

body

The HTTP response body.

delegate

The underlying response instance. If executed by OkHttp, this is okhttp3.Response. If executed by Ktor, this is io.ktor.client.statement.HttpResponse.