com.lithic.api.models.TransactionSimulateCreditAuthorizationParams.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.JsonProperty
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.lithic.api.core.ExcludeMissing
import com.lithic.api.core.JsonValue
import com.lithic.api.core.NoAutoDetect
import com.lithic.api.core.toUnmodifiable
import com.lithic.api.models.*
import java.util.Objects
import java.util.Optional
class TransactionSimulateCreditAuthorizationParams
constructor(
private val amount: Long,
private val descriptor: String,
private val pan: String,
private val mcc: String?,
private val merchantAcceptorId: String?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun amount(): Long = amount
fun descriptor(): String = descriptor
fun pan(): String = pan
fun mcc(): Optional = Optional.ofNullable(mcc)
fun merchantAcceptorId(): Optional = Optional.ofNullable(merchantAcceptorId)
@JvmSynthetic
internal fun getBody(): TransactionSimulateCreditAuthorizationBody {
return TransactionSimulateCreditAuthorizationBody(
amount,
descriptor,
pan,
mcc,
merchantAcceptorId,
additionalBodyProperties,
)
}
@JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams
@JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
@JsonDeserialize(builder = TransactionSimulateCreditAuthorizationBody.Builder::class)
@NoAutoDetect
class TransactionSimulateCreditAuthorizationBody
internal constructor(
private val amount: Long?,
private val descriptor: String?,
private val pan: String?,
private val mcc: String?,
private val merchantAcceptorId: String?,
private val additionalProperties: Map,
) {
private var hashCode: Int = 0
/**
* Amount (in cents). Any value entered will be converted into a negative amount in the
* simulated transaction. For example, entering 100 in this field will appear as a -100
* amount in the transaction.
*/
@JsonProperty("amount") fun amount(): Long? = amount
/** Merchant descriptor. */
@JsonProperty("descriptor") fun descriptor(): String? = descriptor
/** Sixteen digit card number. */
@JsonProperty("pan") fun pan(): String? = pan
/**
* Merchant category code for the transaction to be simulated. A four-digit number listed in
* ISO 18245. Supported merchant category codes can be found
* [here](https://docs.lithic.com/docs/transactions#merchant-category-codes-mccs).
*/
@JsonProperty("mcc") fun mcc(): String? = mcc
/** Unique identifier to identify the payment card acceptor. */
@JsonProperty("merchant_acceptor_id") fun merchantAcceptorId(): String? = merchantAcceptorId
@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 TransactionSimulateCreditAuthorizationBody &&
this.amount == other.amount &&
this.descriptor == other.descriptor &&
this.pan == other.pan &&
this.mcc == other.mcc &&
this.merchantAcceptorId == other.merchantAcceptorId &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
amount,
descriptor,
pan,
mcc,
merchantAcceptorId,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"TransactionSimulateCreditAuthorizationBody{amount=$amount, descriptor=$descriptor, pan=$pan, mcc=$mcc, merchantAcceptorId=$merchantAcceptorId, additionalProperties=$additionalProperties}"
companion object {
@JvmStatic fun builder() = Builder()
}
class Builder {
private var amount: Long? = null
private var descriptor: String? = null
private var pan: String? = null
private var mcc: String? = null
private var merchantAcceptorId: String? = null
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(
transactionSimulateCreditAuthorizationBody:
TransactionSimulateCreditAuthorizationBody
) = apply {
this.amount = transactionSimulateCreditAuthorizationBody.amount
this.descriptor = transactionSimulateCreditAuthorizationBody.descriptor
this.pan = transactionSimulateCreditAuthorizationBody.pan
this.mcc = transactionSimulateCreditAuthorizationBody.mcc
this.merchantAcceptorId =
transactionSimulateCreditAuthorizationBody.merchantAcceptorId
additionalProperties(
transactionSimulateCreditAuthorizationBody.additionalProperties
)
}
/**
* Amount (in cents). Any value entered will be converted into a negative amount in the
* simulated transaction. For example, entering 100 in this field will appear as a -100
* amount in the transaction.
*/
@JsonProperty("amount") fun amount(amount: Long) = apply { this.amount = amount }
/** Merchant descriptor. */
@JsonProperty("descriptor")
fun descriptor(descriptor: String) = apply { this.descriptor = descriptor }
/** Sixteen digit card number. */
@JsonProperty("pan") fun pan(pan: String) = apply { this.pan = pan }
/**
* Merchant category code for the transaction to be simulated. A four-digit number
* listed in ISO 18245. Supported merchant category codes can be found
* [here](https://docs.lithic.com/docs/transactions#merchant-category-codes-mccs).
*/
@JsonProperty("mcc") fun mcc(mcc: String) = apply { this.mcc = mcc }
/** Unique identifier to identify the payment card acceptor. */
@JsonProperty("merchant_acceptor_id")
fun merchantAcceptorId(merchantAcceptorId: String) = apply {
this.merchantAcceptorId = merchantAcceptorId
}
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(): TransactionSimulateCreditAuthorizationBody =
TransactionSimulateCreditAuthorizationBody(
checkNotNull(amount) { "`amount` is required but was not set" },
checkNotNull(descriptor) { "`descriptor` is required but was not set" },
checkNotNull(pan) { "`pan` is required but was not set" },
mcc,
merchantAcceptorId,
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 TransactionSimulateCreditAuthorizationParams &&
this.amount == other.amount &&
this.descriptor == other.descriptor &&
this.pan == other.pan &&
this.mcc == other.mcc &&
this.merchantAcceptorId == other.merchantAcceptorId &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
amount,
descriptor,
pan,
mcc,
merchantAcceptorId,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"TransactionSimulateCreditAuthorizationParams{amount=$amount, descriptor=$descriptor, pan=$pan, mcc=$mcc, merchantAcceptorId=$merchantAcceptorId, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var amount: Long? = null
private var descriptor: String? = null
private var pan: String? = null
private var mcc: String? = null
private var merchantAcceptorId: String? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(
transactionSimulateCreditAuthorizationParams:
TransactionSimulateCreditAuthorizationParams
) = apply {
this.amount = transactionSimulateCreditAuthorizationParams.amount
this.descriptor = transactionSimulateCreditAuthorizationParams.descriptor
this.pan = transactionSimulateCreditAuthorizationParams.pan
this.mcc = transactionSimulateCreditAuthorizationParams.mcc
this.merchantAcceptorId =
transactionSimulateCreditAuthorizationParams.merchantAcceptorId
additionalQueryParams(
transactionSimulateCreditAuthorizationParams.additionalQueryParams
)
additionalHeaders(transactionSimulateCreditAuthorizationParams.additionalHeaders)
additionalBodyProperties(
transactionSimulateCreditAuthorizationParams.additionalBodyProperties
)
}
/**
* Amount (in cents). Any value entered will be converted into a negative amount in the
* simulated transaction. For example, entering 100 in this field will appear as a -100
* amount in the transaction.
*/
fun amount(amount: Long) = apply { this.amount = amount }
/** Merchant descriptor. */
fun descriptor(descriptor: String) = apply { this.descriptor = descriptor }
/** Sixteen digit card number. */
fun pan(pan: String) = apply { this.pan = pan }
/**
* Merchant category code for the transaction to be simulated. A four-digit number listed in
* ISO 18245. Supported merchant category codes can be found
* [here](https://docs.lithic.com/docs/transactions#merchant-category-codes-mccs).
*/
fun mcc(mcc: String) = apply { this.mcc = mcc }
/** Unique identifier to identify the payment card acceptor. */
fun merchantAcceptorId(merchantAcceptorId: String) = apply {
this.merchantAcceptorId = merchantAcceptorId
}
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(): TransactionSimulateCreditAuthorizationParams =
TransactionSimulateCreditAuthorizationParams(
checkNotNull(amount) { "`amount` is required but was not set" },
checkNotNull(descriptor) { "`descriptor` is required but was not set" },
checkNotNull(pan) { "`pan` is required but was not set" },
mcc,
merchantAcceptorId,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
}