data class EagerResponse
EagerResponse is basically the same class as okhttp3.Response except:
headers - they are represented as a list of type Headerbody - the entire response body in memory represented as `StringSince
0.3.0
Author
sergey
EagerResponse(request: Request, protocol: Protocol, code: Int, message: String, handshake: Handshake?, headers: List<Header>, body: String?, networkResponse: Response?, cacheResponse: Response?, priorResponse: Response?, sentRequestAtMillis: Long, receivedResponseAtMillis: Long)
EagerResponse is basically the same class as okhttp3.Response except: |
val body: String? |
|
val cacheResponse: Response? |
|
val code: Int |
|
val handshake: Handshake? |
|
val headers: List<Header> |
|
val message: String |
|
val networkResponse: Response? |
|
val priorResponse: Response? |
|
val protocol: Protocol |
|
val receivedResponseAtMillis: Long |
|
val request: Request |
|
val sentRequestAtMillis: Long |