HttpResponse

data class HttpResponse(responseCode: Int, body: String, headers: List<HttpHeader>)

Functions

component1
Link copied to clipboard
common
operator fun component1(): Int
component2
Link copied to clipboard
common
operator fun component2(): String
component3
Link copied to clipboard
common
operator fun component3(): List<HttpHeader>
copy
Link copied to clipboard
common
fun copy(responseCode: Int, body: String, headers: List<HttpHeader>): HttpResponse
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

body
Link copied to clipboard
common
val body: String
headers
Link copied to clipboard
common
val headers: List<HttpHeader>
responseCode
Link copied to clipboard
common
val responseCode: Int

Sources

(source)
Link copied to clipboard