com.lithic.api.client.okhttp.LithicOkHttpClientAsync.kt Maven / Gradle / Ivy
// File generated from our OpenAPI spec by Stainless.
package com.lithic.api.client.okhttp
import com.fasterxml.jackson.databind.json.JsonMapper
import com.lithic.api.client.LithicClientAsync
import com.lithic.api.client.LithicClientAsyncImpl
import com.lithic.api.core.ClientOptions
import com.lithic.api.core.http.Headers
import com.lithic.api.core.http.QueryParams
import java.net.Proxy
import java.time.Clock
import java.time.Duration
class LithicOkHttpClientAsync private constructor() {
companion object {
@JvmStatic fun builder() = Builder()
@JvmStatic fun fromEnv(): LithicClientAsync = builder().fromEnv().build()
}
class Builder {
private var clientOptions: ClientOptions.Builder = ClientOptions.builder()
private var baseUrl: String = ClientOptions.PRODUCTION_URL
// The default timeout for the client is 1 minute.
private var timeout: Duration = Duration.ofSeconds(60)
private var proxy: Proxy? = null
fun sandbox() = apply { baseUrl(ClientOptions.SANDBOX_URL) }
fun baseUrl(baseUrl: String) = apply {
clientOptions.baseUrl(baseUrl)
this.baseUrl = baseUrl
}
fun jsonMapper(jsonMapper: JsonMapper) = apply { clientOptions.jsonMapper(jsonMapper) }
fun clock(clock: Clock) = apply { clientOptions.clock(clock) }
fun headers(headers: Headers) = apply { clientOptions.headers(headers) }
fun headers(headers: Map>) = apply {
clientOptions.headers(headers)
}
fun putHeader(name: String, value: String) = apply { clientOptions.putHeader(name, value) }
fun putHeaders(name: String, values: Iterable) = apply {
clientOptions.putHeaders(name, values)
}
fun putAllHeaders(headers: Headers) = apply { clientOptions.putAllHeaders(headers) }
fun putAllHeaders(headers: Map>) = apply {
clientOptions.putAllHeaders(headers)
}
fun replaceHeaders(name: String, value: String) = apply {
clientOptions.replaceHeaders(name, value)
}
fun replaceHeaders(name: String, values: Iterable) = apply {
clientOptions.replaceHeaders(name, values)
}
fun replaceAllHeaders(headers: Headers) = apply { clientOptions.replaceAllHeaders(headers) }
fun replaceAllHeaders(headers: Map>) = apply {
clientOptions.replaceAllHeaders(headers)
}
fun removeHeaders(name: String) = apply { clientOptions.removeHeaders(name) }
fun removeAllHeaders(names: Set) = apply { clientOptions.removeAllHeaders(names) }
fun queryParams(queryParams: QueryParams) = apply { clientOptions.queryParams(queryParams) }
fun queryParams(queryParams: Map>) = apply {
clientOptions.queryParams(queryParams)
}
fun putQueryParam(key: String, value: String) = apply {
clientOptions.putQueryParam(key, value)
}
fun putQueryParams(key: String, values: Iterable) = apply {
clientOptions.putQueryParams(key, values)
}
fun putAllQueryParams(queryParams: QueryParams) = apply {
clientOptions.putAllQueryParams(queryParams)
}
fun putAllQueryParams(queryParams: Map>) = apply {
clientOptions.putAllQueryParams(queryParams)
}
fun replaceQueryParams(key: String, value: String) = apply {
clientOptions.replaceQueryParams(key, value)
}
fun replaceQueryParams(key: String, values: Iterable) = apply {
clientOptions.replaceQueryParams(key, values)
}
fun replaceAllQueryParams(queryParams: QueryParams) = apply {
clientOptions.replaceAllQueryParams(queryParams)
}
fun replaceAllQueryParams(queryParams: Map>) = apply {
clientOptions.replaceAllQueryParams(queryParams)
}
fun removeQueryParams(key: String) = apply { clientOptions.removeQueryParams(key) }
fun removeAllQueryParams(keys: Set) = apply {
clientOptions.removeAllQueryParams(keys)
}
fun timeout(timeout: Duration) = apply { this.timeout = timeout }
fun maxRetries(maxRetries: Int) = apply { clientOptions.maxRetries(maxRetries) }
fun proxy(proxy: Proxy) = apply { this.proxy = proxy }
fun responseValidation(responseValidation: Boolean) = apply {
clientOptions.responseValidation(responseValidation)
}
fun apiKey(apiKey: String) = apply { clientOptions.apiKey(apiKey) }
fun webhookSecret(webhookSecret: String?) = apply {
clientOptions.webhookSecret(webhookSecret)
}
fun fromEnv() = apply { clientOptions.fromEnv() }
fun build(): LithicClientAsync =
LithicClientAsyncImpl(
clientOptions
.httpClient(
OkHttpClient.builder()
.baseUrl(baseUrl)
.timeout(timeout)
.proxy(proxy)
.build()
)
.build()
)
}
}