All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.lithic.api.models.ResponderEndpointDeleteParams.kt Maven / Gradle / Ivy
Go to download
The Lithic Developer API is designed to provide a predictable programmatic
interface for accessing your Lithic account through an API and transaction
webhooks. Note that your API key is a secret and should be treated as such.
Don't share it with anyone, including us. We will never ask you for it.
// File generated from our OpenAPI spec by Stainless.
package com.lithic.api.models
import com.fasterxml.jackson.annotation.JsonCreator
import com.lithic.api.core.Enum
import com.lithic.api.core.JsonField
import com.lithic.api.core.JsonValue
import com.lithic.api.core.NoAutoDetect
import com.lithic.api.core.toUnmodifiable
import com.lithic.api.errors.LithicInvalidDataException
import com.lithic.api.models.*
import java.util.Objects
import java.util.Optional
class ResponderEndpointDeleteParams
constructor(
private val type: Type,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun type(): Type = type
@JvmSynthetic
internal fun getBody(): Optional> {
return Optional.ofNullable(additionalBodyProperties.ifEmpty { null })
}
@JvmSynthetic
internal fun getQueryParams(): Map> {
val params = mutableMapOf>()
this.type.let { params.put("type", listOf(it.toString())) }
params.putAll(additionalQueryParams)
return params.toUnmodifiable()
}
@JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
fun _additionalQueryParams(): Map> = additionalQueryParams
fun _additionalHeaders(): Map> = additionalHeaders
fun _additionalBodyProperties(): Map = additionalBodyProperties
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is ResponderEndpointDeleteParams &&
this.type == other.type &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
type,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"ResponderEndpointDeleteParams{type=$type, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var type: Type? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(responderEndpointDeleteParams: ResponderEndpointDeleteParams) = apply {
this.type = responderEndpointDeleteParams.type
additionalQueryParams(responderEndpointDeleteParams.additionalQueryParams)
additionalHeaders(responderEndpointDeleteParams.additionalHeaders)
additionalBodyProperties(responderEndpointDeleteParams.additionalBodyProperties)
}
/** The type of the endpoint. */
fun type(type: Type) = apply { this.type = type }
fun additionalQueryParams(additionalQueryParams: Map>) = apply {
this.additionalQueryParams.clear()
putAllQueryParams(additionalQueryParams)
}
fun putQueryParam(name: String, value: String) = apply {
this.additionalQueryParams.getOrPut(name) { mutableListOf() }.add(value)
}
fun putQueryParams(name: String, values: Iterable) = apply {
this.additionalQueryParams.getOrPut(name) { mutableListOf() }.addAll(values)
}
fun putAllQueryParams(additionalQueryParams: Map>) = apply {
additionalQueryParams.forEach(this::putQueryParams)
}
fun removeQueryParam(name: String) = apply {
this.additionalQueryParams.put(name, mutableListOf())
}
fun additionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.clear()
putAllHeaders(additionalHeaders)
}
fun putHeader(name: String, value: String) = apply {
this.additionalHeaders.getOrPut(name) { mutableListOf() }.add(value)
}
fun putHeaders(name: String, values: Iterable) = apply {
this.additionalHeaders.getOrPut(name) { mutableListOf() }.addAll(values)
}
fun putAllHeaders(additionalHeaders: Map>) = apply {
additionalHeaders.forEach(this::putHeaders)
}
fun removeHeader(name: String) = apply { this.additionalHeaders.put(name, mutableListOf()) }
fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
this.additionalBodyProperties.clear()
this.additionalBodyProperties.putAll(additionalBodyProperties)
}
fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
this.additionalBodyProperties.put(key, value)
}
fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
apply {
this.additionalBodyProperties.putAll(additionalBodyProperties)
}
fun build(): ResponderEndpointDeleteParams =
ResponderEndpointDeleteParams(
checkNotNull(type) { "`type` is required but was not set" },
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
class Type
@JsonCreator
private constructor(
private val value: JsonField,
) : Enum {
@com.fasterxml.jackson.annotation.JsonValue fun _value(): JsonField = value
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is Type && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
@JvmField val AUTH_STREAM_ACCESS = Type(JsonField.of("AUTH_STREAM_ACCESS"))
@JvmField val THREE_DS_DECISIONING = Type(JsonField.of("THREE_DS_DECISIONING"))
@JvmField val TOKENIZATION_DECISIONING = Type(JsonField.of("TOKENIZATION_DECISIONING"))
@JvmStatic fun of(value: String) = Type(JsonField.of(value))
}
enum class Known {
AUTH_STREAM_ACCESS,
THREE_DS_DECISIONING,
TOKENIZATION_DECISIONING,
}
enum class Value {
AUTH_STREAM_ACCESS,
THREE_DS_DECISIONING,
TOKENIZATION_DECISIONING,
_UNKNOWN,
}
fun value(): Value =
when (this) {
AUTH_STREAM_ACCESS -> Value.AUTH_STREAM_ACCESS
THREE_DS_DECISIONING -> Value.THREE_DS_DECISIONING
TOKENIZATION_DECISIONING -> Value.TOKENIZATION_DECISIONING
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
AUTH_STREAM_ACCESS -> Known.AUTH_STREAM_ACCESS
THREE_DS_DECISIONING -> Known.THREE_DS_DECISIONING
TOKENIZATION_DECISIONING -> Known.TOKENIZATION_DECISIONING
else -> throw LithicInvalidDataException("Unknown Type: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
}