com.lithic.api.models.ResponderEndpointCreateParams.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lithic-java-core Show documentation
Show all versions of lithic-java-core Show documentation
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.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonAnySetter
import com.fasterxml.jackson.annotation.JsonCreator
import com.fasterxml.jackson.annotation.JsonProperty
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.lithic.api.core.Enum
import com.lithic.api.core.ExcludeMissing
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 ResponderEndpointCreateParams
constructor(
private val type: Type?,
private val url: String?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun type(): Optional = Optional.ofNullable(type)
fun url(): Optional = Optional.ofNullable(url)
@JvmSynthetic
internal fun getBody(): ResponderEndpointCreateBody {
return ResponderEndpointCreateBody(
type,
url,
additionalBodyProperties,
)
}
@JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams
@JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
@JsonDeserialize(builder = ResponderEndpointCreateBody.Builder::class)
@NoAutoDetect
class ResponderEndpointCreateBody
internal constructor(
private val type: Type?,
private val url: String?,
private val additionalProperties: Map,
) {
/** The type of the endpoint. */
@JsonProperty("type") fun type(): Type? = type
/** The URL for the responder endpoint (must be http(s)). */
@JsonProperty("url") fun url(): String? = url
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
class Builder {
private var type: Type? = null
private var url: String? = null
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(responderEndpointCreateBody: ResponderEndpointCreateBody) = apply {
this.type = responderEndpointCreateBody.type
this.url = responderEndpointCreateBody.url
additionalProperties(responderEndpointCreateBody.additionalProperties)
}
/** The type of the endpoint. */
@JsonProperty("type") fun type(type: Type) = apply { this.type = type }
/** The URL for the responder endpoint (must be http(s)). */
@JsonProperty("url") fun url(url: String) = apply { this.url = url }
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
this.additionalProperties.putAll(additionalProperties)
}
@JsonAnySetter
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
this.additionalProperties.put(key, value)
}
fun putAllAdditionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun build(): ResponderEndpointCreateBody =
ResponderEndpointCreateBody(
type,
url,
additionalProperties.toUnmodifiable(),
)
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is ResponderEndpointCreateBody &&
this.type == other.type &&
this.url == other.url &&
this.additionalProperties == other.additionalProperties
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
type,
url,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"ResponderEndpointCreateBody{type=$type, url=$url, additionalProperties=$additionalProperties}"
}
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 ResponderEndpointCreateParams &&
this.type == other.type &&
this.url == other.url &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
type,
url,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"ResponderEndpointCreateParams{type=$type, url=$url, 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 url: String? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(responderEndpointCreateParams: ResponderEndpointCreateParams) = apply {
this.type = responderEndpointCreateParams.type
this.url = responderEndpointCreateParams.url
additionalQueryParams(responderEndpointCreateParams.additionalQueryParams)
additionalHeaders(responderEndpointCreateParams.additionalHeaders)
additionalBodyProperties(responderEndpointCreateParams.additionalBodyProperties)
}
/** The type of the endpoint. */
fun type(type: Type) = apply { this.type = type }
/** The URL for the responder endpoint (must be http(s)). */
fun url(url: String) = apply { this.url = url }
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(): ResponderEndpointCreateParams =
ResponderEndpointCreateParams(
type,
url,
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()
}
}