com.lithic.api.models.PaymentSimulateActionParams.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 PaymentSimulateActionParams
constructor(
private val paymentToken: String,
private val eventType: SupportedSimulationTypes,
private val declineReason: SupportedSimulationDeclineReasons?,
private val returnReasonCode: String?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun paymentToken(): String = paymentToken
fun eventType(): SupportedSimulationTypes = eventType
fun declineReason(): Optional =
Optional.ofNullable(declineReason)
fun returnReasonCode(): Optional = Optional.ofNullable(returnReasonCode)
@JvmSynthetic
internal fun getBody(): PaymentSimulateActionBody {
return PaymentSimulateActionBody(
eventType,
declineReason,
returnReasonCode,
additionalBodyProperties,
)
}
@JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams
@JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
fun getPathParam(index: Int): String {
return when (index) {
0 -> paymentToken
else -> ""
}
}
@JsonDeserialize(builder = PaymentSimulateActionBody.Builder::class)
@NoAutoDetect
class PaymentSimulateActionBody
internal constructor(
private val eventType: SupportedSimulationTypes?,
private val declineReason: SupportedSimulationDeclineReasons?,
private val returnReasonCode: String?,
private val additionalProperties: Map,
) {
private var hashCode: Int = 0
/** Event Type */
@JsonProperty("event_type") fun eventType(): SupportedSimulationTypes? = eventType
/** Decline reason */
@JsonProperty("decline_reason")
fun declineReason(): SupportedSimulationDeclineReasons? = declineReason
/** Return Reason Code */
@JsonProperty("return_reason_code") fun returnReasonCode(): String? = returnReasonCode
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is PaymentSimulateActionBody &&
this.eventType == other.eventType &&
this.declineReason == other.declineReason &&
this.returnReasonCode == other.returnReasonCode &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
eventType,
declineReason,
returnReasonCode,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"PaymentSimulateActionBody{eventType=$eventType, declineReason=$declineReason, returnReasonCode=$returnReasonCode, additionalProperties=$additionalProperties}"
companion object {
@JvmStatic fun builder() = Builder()
}
class Builder {
private var eventType: SupportedSimulationTypes? = null
private var declineReason: SupportedSimulationDeclineReasons? = null
private var returnReasonCode: String? = null
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(paymentSimulateActionBody: PaymentSimulateActionBody) = apply {
this.eventType = paymentSimulateActionBody.eventType
this.declineReason = paymentSimulateActionBody.declineReason
this.returnReasonCode = paymentSimulateActionBody.returnReasonCode
additionalProperties(paymentSimulateActionBody.additionalProperties)
}
/** Event Type */
@JsonProperty("event_type")
fun eventType(eventType: SupportedSimulationTypes) = apply {
this.eventType = eventType
}
/** Decline reason */
@JsonProperty("decline_reason")
fun declineReason(declineReason: SupportedSimulationDeclineReasons) = apply {
this.declineReason = declineReason
}
/** Return Reason Code */
@JsonProperty("return_reason_code")
fun returnReasonCode(returnReasonCode: String) = apply {
this.returnReasonCode = returnReasonCode
}
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(): PaymentSimulateActionBody =
PaymentSimulateActionBody(
checkNotNull(eventType) { "`eventType` is required but was not set" },
declineReason,
returnReasonCode,
additionalProperties.toUnmodifiable(),
)
}
}
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 PaymentSimulateActionParams &&
this.paymentToken == other.paymentToken &&
this.eventType == other.eventType &&
this.declineReason == other.declineReason &&
this.returnReasonCode == other.returnReasonCode &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
paymentToken,
eventType,
declineReason,
returnReasonCode,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"PaymentSimulateActionParams{paymentToken=$paymentToken, eventType=$eventType, declineReason=$declineReason, returnReasonCode=$returnReasonCode, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var paymentToken: String? = null
private var eventType: SupportedSimulationTypes? = null
private var declineReason: SupportedSimulationDeclineReasons? = null
private var returnReasonCode: String? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(paymentSimulateActionParams: PaymentSimulateActionParams) = apply {
this.paymentToken = paymentSimulateActionParams.paymentToken
this.eventType = paymentSimulateActionParams.eventType
this.declineReason = paymentSimulateActionParams.declineReason
this.returnReasonCode = paymentSimulateActionParams.returnReasonCode
additionalQueryParams(paymentSimulateActionParams.additionalQueryParams)
additionalHeaders(paymentSimulateActionParams.additionalHeaders)
additionalBodyProperties(paymentSimulateActionParams.additionalBodyProperties)
}
fun paymentToken(paymentToken: String) = apply { this.paymentToken = paymentToken }
/** Event Type */
fun eventType(eventType: SupportedSimulationTypes) = apply { this.eventType = eventType }
/** Decline reason */
fun declineReason(declineReason: SupportedSimulationDeclineReasons) = apply {
this.declineReason = declineReason
}
/** Return Reason Code */
fun returnReasonCode(returnReasonCode: String) = apply {
this.returnReasonCode = returnReasonCode
}
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(): PaymentSimulateActionParams =
PaymentSimulateActionParams(
checkNotNull(paymentToken) { "`paymentToken` is required but was not set" },
checkNotNull(eventType) { "`eventType` is required but was not set" },
declineReason,
returnReasonCode,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
class SupportedSimulationTypes
@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 SupportedSimulationTypes && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
@JvmField
val ACH_ORIGINATION_REVIEWED =
SupportedSimulationTypes(JsonField.of("ACH_ORIGINATION_REVIEWED"))
@JvmField
val ACH_ORIGINATION_RELEASED =
SupportedSimulationTypes(JsonField.of("ACH_ORIGINATION_RELEASED"))
@JvmField
val ACH_ORIGINATION_PROCESSED =
SupportedSimulationTypes(JsonField.of("ACH_ORIGINATION_PROCESSED"))
@JvmField
val ACH_ORIGINATION_SETTLED =
SupportedSimulationTypes(JsonField.of("ACH_ORIGINATION_SETTLED"))
@JvmField
val ACH_RECEIPT_SETTLED = SupportedSimulationTypes(JsonField.of("ACH_RECEIPT_SETTLED"))
@JvmField
val ACH_RETURN_INITIATED =
SupportedSimulationTypes(JsonField.of("ACH_RETURN_INITIATED"))
@JvmField
val ACH_RETURN_PROCESSED =
SupportedSimulationTypes(JsonField.of("ACH_RETURN_PROCESSED"))
@JvmStatic fun of(value: String) = SupportedSimulationTypes(JsonField.of(value))
}
enum class Known {
ACH_ORIGINATION_REVIEWED,
ACH_ORIGINATION_RELEASED,
ACH_ORIGINATION_PROCESSED,
ACH_ORIGINATION_SETTLED,
ACH_RECEIPT_SETTLED,
ACH_RETURN_INITIATED,
ACH_RETURN_PROCESSED,
}
enum class Value {
ACH_ORIGINATION_REVIEWED,
ACH_ORIGINATION_RELEASED,
ACH_ORIGINATION_PROCESSED,
ACH_ORIGINATION_SETTLED,
ACH_RECEIPT_SETTLED,
ACH_RETURN_INITIATED,
ACH_RETURN_PROCESSED,
_UNKNOWN,
}
fun value(): Value =
when (this) {
ACH_ORIGINATION_REVIEWED -> Value.ACH_ORIGINATION_REVIEWED
ACH_ORIGINATION_RELEASED -> Value.ACH_ORIGINATION_RELEASED
ACH_ORIGINATION_PROCESSED -> Value.ACH_ORIGINATION_PROCESSED
ACH_ORIGINATION_SETTLED -> Value.ACH_ORIGINATION_SETTLED
ACH_RECEIPT_SETTLED -> Value.ACH_RECEIPT_SETTLED
ACH_RETURN_INITIATED -> Value.ACH_RETURN_INITIATED
ACH_RETURN_PROCESSED -> Value.ACH_RETURN_PROCESSED
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
ACH_ORIGINATION_REVIEWED -> Known.ACH_ORIGINATION_REVIEWED
ACH_ORIGINATION_RELEASED -> Known.ACH_ORIGINATION_RELEASED
ACH_ORIGINATION_PROCESSED -> Known.ACH_ORIGINATION_PROCESSED
ACH_ORIGINATION_SETTLED -> Known.ACH_ORIGINATION_SETTLED
ACH_RECEIPT_SETTLED -> Known.ACH_RECEIPT_SETTLED
ACH_RETURN_INITIATED -> Known.ACH_RETURN_INITIATED
ACH_RETURN_PROCESSED -> Known.ACH_RETURN_PROCESSED
else -> throw LithicInvalidDataException("Unknown SupportedSimulationTypes: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
class SupportedSimulationDeclineReasons
@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 SupportedSimulationDeclineReasons && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
@JvmField
val PROGRAM_TRANSACTION_LIMIT_EXCEEDED =
SupportedSimulationDeclineReasons(
JsonField.of("PROGRAM_TRANSACTION_LIMIT_EXCEEDED")
)
@JvmField
val PROGRAM_DAILY_LIMIT_EXCEEDED =
SupportedSimulationDeclineReasons(JsonField.of("PROGRAM_DAILY_LIMIT_EXCEEDED"))
@JvmField
val PROGRAM_MONTHLY_LIMIT_EXCEEDED =
SupportedSimulationDeclineReasons(JsonField.of("PROGRAM_MONTHLY_LIMIT_EXCEEDED"))
@JvmStatic
fun of(value: String) = SupportedSimulationDeclineReasons(JsonField.of(value))
}
enum class Known {
PROGRAM_TRANSACTION_LIMIT_EXCEEDED,
PROGRAM_DAILY_LIMIT_EXCEEDED,
PROGRAM_MONTHLY_LIMIT_EXCEEDED,
}
enum class Value {
PROGRAM_TRANSACTION_LIMIT_EXCEEDED,
PROGRAM_DAILY_LIMIT_EXCEEDED,
PROGRAM_MONTHLY_LIMIT_EXCEEDED,
_UNKNOWN,
}
fun value(): Value =
when (this) {
PROGRAM_TRANSACTION_LIMIT_EXCEEDED -> Value.PROGRAM_TRANSACTION_LIMIT_EXCEEDED
PROGRAM_DAILY_LIMIT_EXCEEDED -> Value.PROGRAM_DAILY_LIMIT_EXCEEDED
PROGRAM_MONTHLY_LIMIT_EXCEEDED -> Value.PROGRAM_MONTHLY_LIMIT_EXCEEDED
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
PROGRAM_TRANSACTION_LIMIT_EXCEEDED -> Known.PROGRAM_TRANSACTION_LIMIT_EXCEEDED
PROGRAM_DAILY_LIMIT_EXCEEDED -> Known.PROGRAM_DAILY_LIMIT_EXCEEDED
PROGRAM_MONTHLY_LIMIT_EXCEEDED -> Known.PROGRAM_MONTHLY_LIMIT_EXCEEDED
else ->
throw LithicInvalidDataException(
"Unknown SupportedSimulationDeclineReasons: $value"
)
}
fun asString(): String = _value().asStringOrThrow()
}
}