com.lithic.api.models.DecisioningSimulateChallengeResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lithic-kotlin-core Show documentation
Show all versions of lithic-kotlin-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.
The newest version!
// 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.JsonProperty
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.lithic.api.core.ExcludeMissing
import com.lithic.api.core.JsonField
import com.lithic.api.core.JsonMissing
import com.lithic.api.core.JsonValue
import com.lithic.api.core.NoAutoDetect
import com.lithic.api.core.toImmutable
import java.util.Objects
@JsonDeserialize(builder = DecisioningSimulateChallengeResponse.Builder::class)
@NoAutoDetect
class DecisioningSimulateChallengeResponse
private constructor(
private val token: JsonField,
private val additionalProperties: Map,
) {
private var validated: Boolean = false
/**
* A unique token to reference this transaction with later calls to void or clear the
* authorization. This token is used in /v1/three_ds_decisioning/simulate/challenge_response to
* Approve or Decline the authentication
*/
fun token(): String? = token.getNullable("token")
/**
* A unique token to reference this transaction with later calls to void or clear the
* authorization. This token is used in /v1/three_ds_decisioning/simulate/challenge_response to
* Approve or Decline the authentication
*/
@JsonProperty("token") @ExcludeMissing fun _token() = token
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun validate(): DecisioningSimulateChallengeResponse = apply {
if (!validated) {
token()
validated = true
}
}
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
class Builder {
private var token: JsonField = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(
decisioningSimulateChallengeResponse: DecisioningSimulateChallengeResponse
) = apply {
this.token = decisioningSimulateChallengeResponse.token
additionalProperties(decisioningSimulateChallengeResponse.additionalProperties)
}
/**
* A unique token to reference this transaction with later calls to void or clear the
* authorization. This token is used in /v1/three_ds_decisioning/simulate/challenge_response
* to Approve or Decline the authentication
*/
fun token(token: String) = token(JsonField.of(token))
/**
* A unique token to reference this transaction with later calls to void or clear the
* authorization. This token is used in /v1/three_ds_decisioning/simulate/challenge_response
* to Approve or Decline the authentication
*/
@JsonProperty("token")
@ExcludeMissing
fun token(token: JsonField) = apply { this.token = token }
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(): DecisioningSimulateChallengeResponse =
DecisioningSimulateChallengeResponse(token, additionalProperties.toImmutable())
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is DecisioningSimulateChallengeResponse && this.token == other.token && this.additionalProperties == other.additionalProperties /* spotless:on */
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode = /* spotless:off */ Objects.hash(token, additionalProperties) /* spotless:on */
}
return hashCode
}
override fun toString() =
"DecisioningSimulateChallengeResponse{token=$token, additionalProperties=$additionalProperties}"
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy