HttpClientSettings

class HttpClientSettings(val baseUri: URI? = null, val contentType: ContentType? = null, val accept: List<ContentType> = emptyList(), val useCookies: Boolean = true, val headers: Headers = Headers(), val insecure: Boolean = false, val sslSettings: SslSettings? = null, val authorization: Authorization? = null, val followRedirects: Boolean = false)

Constructors

Link copied to clipboard
constructor(baseUri: URI? = null, contentType: ContentType? = null, accept: List<ContentType> = emptyList(), useCookies: Boolean = true, headers: Headers = Headers(), insecure: Boolean = false, sslSettings: SslSettings? = null, authorization: Authorization? = null, followRedirects: Boolean = false)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val baseUri: URI?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun with(baseUri: URI? = this.baseUri, contentType: ContentType? = this.contentType, accept: List<ContentType> = this.accept, useCookies: Boolean = this.useCookies, headers: Headers = this.headers, insecure: Boolean = this.insecure, sslSettings: SslSettings? = this.sslSettings, authorization: Authorization? = this.authorization, followRedirects: Boolean = this.followRedirects): HttpClientSettings