Package-level declarations

Types

Link copied to clipboard
class Request(url: String)

Represents a request builder Example usage:

Link copied to clipboard

Represents a request method

Link copied to clipboard

Represents the protocol to use (http, https)

Link copied to clipboard
data class Response(val request: Request, val code: Int, val message: String, val responseBody: ByteArray?, val headers: Map<String, List<String>>, val cookies: Map<String, String>, val error: Exception?, val time: Long, val redirects: Int)

Representation of an HTTP Response