com.lithic.api.models.PaymentCreateParams.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.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.http.Headers
import com.lithic.api.core.http.QueryParams
import com.lithic.api.core.toImmutable
import com.lithic.api.errors.LithicInvalidDataException
import com.lithic.api.models.*
import java.util.Objects
class PaymentCreateParams
constructor(
private val amount: Long,
private val externalBankAccountToken: String,
private val financialAccountToken: String,
private val method: Method,
private val methodAttributes: PaymentMethodRequestAttributes,
private val type: Type,
private val token: String?,
private val memo: String?,
private val userDefinedId: String?,
private val additionalHeaders: Headers,
private val additionalQueryParams: QueryParams,
private val additionalBodyProperties: Map,
) {
fun amount(): Long = amount
fun externalBankAccountToken(): String = externalBankAccountToken
fun financialAccountToken(): String = financialAccountToken
fun method(): Method = method
fun methodAttributes(): PaymentMethodRequestAttributes = methodAttributes
fun type(): Type = type
fun token(): String? = token
fun memo(): String? = memo
fun userDefinedId(): String? = userDefinedId
internal fun getBody(): PaymentCreateBody {
return PaymentCreateBody(
amount,
externalBankAccountToken,
financialAccountToken,
method,
methodAttributes,
type,
token,
memo,
userDefinedId,
additionalBodyProperties,
)
}
internal fun getHeaders(): Headers = additionalHeaders
internal fun getQueryParams(): QueryParams = additionalQueryParams
@JsonDeserialize(builder = PaymentCreateBody.Builder::class)
@NoAutoDetect
class PaymentCreateBody
internal constructor(
private val amount: Long?,
private val externalBankAccountToken: String?,
private val financialAccountToken: String?,
private val method: Method?,
private val methodAttributes: PaymentMethodRequestAttributes?,
private val type: Type?,
private val token: String?,
private val memo: String?,
private val userDefinedId: String?,
private val additionalProperties: Map,
) {
@JsonProperty("amount") fun amount(): Long? = amount
@JsonProperty("external_bank_account_token")
fun externalBankAccountToken(): String? = externalBankAccountToken
@JsonProperty("financial_account_token")
fun financialAccountToken(): String? = financialAccountToken
@JsonProperty("method") fun method(): Method? = method
@JsonProperty("method_attributes")
fun methodAttributes(): PaymentMethodRequestAttributes? = methodAttributes
@JsonProperty("type") fun type(): Type? = type
/**
* Customer-provided token that will serve as an idempotency token. This token will become
* the transaction token.
*/
@JsonProperty("token") fun token(): String? = token
@JsonProperty("memo") fun memo(): String? = memo
@JsonProperty("user_defined_id") fun userDefinedId(): String? = userDefinedId
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
class Builder {
private var amount: Long? = null
private var externalBankAccountToken: String? = null
private var financialAccountToken: String? = null
private var method: Method? = null
private var methodAttributes: PaymentMethodRequestAttributes? = null
private var type: Type? = null
private var token: String? = null
private var memo: String? = null
private var userDefinedId: String? = null
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(paymentCreateBody: PaymentCreateBody) = apply {
this.amount = paymentCreateBody.amount
this.externalBankAccountToken = paymentCreateBody.externalBankAccountToken
this.financialAccountToken = paymentCreateBody.financialAccountToken
this.method = paymentCreateBody.method
this.methodAttributes = paymentCreateBody.methodAttributes
this.type = paymentCreateBody.type
this.token = paymentCreateBody.token
this.memo = paymentCreateBody.memo
this.userDefinedId = paymentCreateBody.userDefinedId
additionalProperties(paymentCreateBody.additionalProperties)
}
@JsonProperty("amount") fun amount(amount: Long) = apply { this.amount = amount }
@JsonProperty("external_bank_account_token")
fun externalBankAccountToken(externalBankAccountToken: String) = apply {
this.externalBankAccountToken = externalBankAccountToken
}
@JsonProperty("financial_account_token")
fun financialAccountToken(financialAccountToken: String) = apply {
this.financialAccountToken = financialAccountToken
}
@JsonProperty("method") fun method(method: Method) = apply { this.method = method }
@JsonProperty("method_attributes")
fun methodAttributes(methodAttributes: PaymentMethodRequestAttributes) = apply {
this.methodAttributes = methodAttributes
}
@JsonProperty("type") fun type(type: Type) = apply { this.type = type }
/**
* Customer-provided token that will serve as an idempotency token. This token will
* become the transaction token.
*/
@JsonProperty("token") fun token(token: String) = apply { this.token = token }
@JsonProperty("memo") fun memo(memo: String) = apply { this.memo = memo }
@JsonProperty("user_defined_id")
fun userDefinedId(userDefinedId: String) = apply { this.userDefinedId = userDefinedId }
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(): PaymentCreateBody =
PaymentCreateBody(
checkNotNull(amount) { "`amount` is required but was not set" },
checkNotNull(externalBankAccountToken) {
"`externalBankAccountToken` is required but was not set"
},
checkNotNull(financialAccountToken) {
"`financialAccountToken` is required but was not set"
},
checkNotNull(method) { "`method` is required but was not set" },
checkNotNull(methodAttributes) {
"`methodAttributes` is required but was not set"
},
checkNotNull(type) { "`type` is required but was not set" },
token,
memo,
userDefinedId,
additionalProperties.toImmutable(),
)
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is PaymentCreateBody && this.amount == other.amount && this.externalBankAccountToken == other.externalBankAccountToken && this.financialAccountToken == other.financialAccountToken && this.method == other.method && this.methodAttributes == other.methodAttributes && this.type == other.type && this.token == other.token && this.memo == other.memo && this.userDefinedId == other.userDefinedId && this.additionalProperties == other.additionalProperties /* spotless:on */
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode = /* spotless:off */ Objects.hash(amount, externalBankAccountToken, financialAccountToken, method, methodAttributes, type, token, memo, userDefinedId, additionalProperties) /* spotless:on */
}
return hashCode
}
override fun toString() =
"PaymentCreateBody{amount=$amount, externalBankAccountToken=$externalBankAccountToken, financialAccountToken=$financialAccountToken, method=$method, methodAttributes=$methodAttributes, type=$type, token=$token, memo=$memo, userDefinedId=$userDefinedId, additionalProperties=$additionalProperties}"
}
fun _additionalHeaders(): Headers = additionalHeaders
fun _additionalQueryParams(): QueryParams = additionalQueryParams
fun _additionalBodyProperties(): Map = additionalBodyProperties
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is PaymentCreateParams && this.amount == other.amount && this.externalBankAccountToken == other.externalBankAccountToken && this.financialAccountToken == other.financialAccountToken && this.method == other.method && this.methodAttributes == other.methodAttributes && this.type == other.type && this.token == other.token && this.memo == other.memo && this.userDefinedId == other.userDefinedId && this.additionalHeaders == other.additionalHeaders && this.additionalQueryParams == other.additionalQueryParams && this.additionalBodyProperties == other.additionalBodyProperties /* spotless:on */
}
override fun hashCode(): Int {
return /* spotless:off */ Objects.hash(amount, externalBankAccountToken, financialAccountToken, method, methodAttributes, type, token, memo, userDefinedId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */
}
override fun toString() =
"PaymentCreateParams{amount=$amount, externalBankAccountToken=$externalBankAccountToken, financialAccountToken=$financialAccountToken, method=$method, methodAttributes=$methodAttributes, type=$type, token=$token, memo=$memo, userDefinedId=$userDefinedId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var amount: Long? = null
private var externalBankAccountToken: String? = null
private var financialAccountToken: String? = null
private var method: Method? = null
private var methodAttributes: PaymentMethodRequestAttributes? = null
private var type: Type? = null
private var token: String? = null
private var memo: String? = null
private var userDefinedId: String? = null
private var additionalHeaders: Headers.Builder = Headers.builder()
private var additionalQueryParams: QueryParams.Builder = QueryParams.builder()
private var additionalBodyProperties: MutableMap = mutableMapOf()
internal fun from(paymentCreateParams: PaymentCreateParams) = apply {
this.amount = paymentCreateParams.amount
this.externalBankAccountToken = paymentCreateParams.externalBankAccountToken
this.financialAccountToken = paymentCreateParams.financialAccountToken
this.method = paymentCreateParams.method
this.methodAttributes = paymentCreateParams.methodAttributes
this.type = paymentCreateParams.type
this.token = paymentCreateParams.token
this.memo = paymentCreateParams.memo
this.userDefinedId = paymentCreateParams.userDefinedId
additionalHeaders(paymentCreateParams.additionalHeaders)
additionalQueryParams(paymentCreateParams.additionalQueryParams)
additionalBodyProperties(paymentCreateParams.additionalBodyProperties)
}
fun amount(amount: Long) = apply { this.amount = amount }
fun externalBankAccountToken(externalBankAccountToken: String) = apply {
this.externalBankAccountToken = externalBankAccountToken
}
fun financialAccountToken(financialAccountToken: String) = apply {
this.financialAccountToken = financialAccountToken
}
fun method(method: Method) = apply { this.method = method }
fun methodAttributes(methodAttributes: PaymentMethodRequestAttributes) = apply {
this.methodAttributes = methodAttributes
}
fun type(type: Type) = apply { this.type = type }
/**
* Customer-provided token that will serve as an idempotency token. This token will become
* the transaction token.
*/
fun token(token: String) = apply { this.token = token }
fun memo(memo: String) = apply { this.memo = memo }
fun userDefinedId(userDefinedId: String) = apply { this.userDefinedId = userDefinedId }
fun additionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.clear()
putAllAdditionalHeaders(additionalHeaders)
}
fun additionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.clear()
putAllAdditionalHeaders(additionalHeaders)
}
fun putAdditionalHeader(name: String, value: String) = apply {
additionalHeaders.put(name, value)
}
fun putAdditionalHeaders(name: String, values: Iterable) = apply {
additionalHeaders.put(name, values)
}
fun putAllAdditionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
fun putAllAdditionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
fun replaceAdditionalHeaders(name: String, value: String) = apply {
additionalHeaders.replace(name, value)
}
fun replaceAdditionalHeaders(name: String, values: Iterable) = apply {
additionalHeaders.replace(name, values)
}
fun replaceAllAdditionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
fun replaceAllAdditionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
fun removeAdditionalHeaders(name: String) = apply { additionalHeaders.remove(name) }
fun removeAllAdditionalHeaders(names: Set) = apply {
additionalHeaders.removeAll(names)
}
fun additionalQueryParams(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.clear()
putAllAdditionalQueryParams(additionalQueryParams)
}
fun additionalQueryParams(additionalQueryParams: Map>) = apply {
this.additionalQueryParams.clear()
putAllAdditionalQueryParams(additionalQueryParams)
}
fun putAdditionalQueryParam(key: String, value: String) = apply {
additionalQueryParams.put(key, value)
}
fun putAdditionalQueryParams(key: String, values: Iterable) = apply {
additionalQueryParams.put(key, values)
}
fun putAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
fun putAllAdditionalQueryParams(additionalQueryParams: Map>) =
apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
fun replaceAdditionalQueryParams(key: String, value: String) = apply {
additionalQueryParams.replace(key, value)
}
fun replaceAdditionalQueryParams(key: String, values: Iterable) = apply {
additionalQueryParams.replace(key, values)
}
fun replaceAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.replaceAll(additionalQueryParams)
}
fun replaceAllAdditionalQueryParams(additionalQueryParams: Map>) =
apply {
this.additionalQueryParams.replaceAll(additionalQueryParams)
}
fun removeAdditionalQueryParams(key: String) = apply { additionalQueryParams.remove(key) }
fun removeAllAdditionalQueryParams(keys: Set) = apply {
additionalQueryParams.removeAll(keys)
}
fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
this.additionalBodyProperties.clear()
putAllAdditionalBodyProperties(additionalBodyProperties)
}
fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
additionalBodyProperties.put(key, value)
}
fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
apply {
this.additionalBodyProperties.putAll(additionalBodyProperties)
}
fun removeAdditionalBodyProperty(key: String) = apply {
additionalBodyProperties.remove(key)
}
fun removeAllAdditionalBodyProperties(keys: Set) = apply {
keys.forEach(::removeAdditionalBodyProperty)
}
fun build(): PaymentCreateParams =
PaymentCreateParams(
checkNotNull(amount) { "`amount` is required but was not set" },
checkNotNull(externalBankAccountToken) {
"`externalBankAccountToken` is required but was not set"
},
checkNotNull(financialAccountToken) {
"`financialAccountToken` is required but was not set"
},
checkNotNull(method) { "`method` is required but was not set" },
checkNotNull(methodAttributes) { "`methodAttributes` is required but was not set" },
checkNotNull(type) { "`type` is required but was not set" },
token,
memo,
userDefinedId,
additionalHeaders.build(),
additionalQueryParams.build(),
additionalBodyProperties.toImmutable(),
)
}
class Method
@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 /* spotless:off */ other is Method && this.value == other.value /* spotless:on */
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val ACH_NEXT_DAY = Method(JsonField.of("ACH_NEXT_DAY"))
val ACH_SAME_DAY = Method(JsonField.of("ACH_SAME_DAY"))
fun of(value: String) = Method(JsonField.of(value))
}
enum class Known {
ACH_NEXT_DAY,
ACH_SAME_DAY,
}
enum class Value {
ACH_NEXT_DAY,
ACH_SAME_DAY,
_UNKNOWN,
}
fun value(): Value =
when (this) {
ACH_NEXT_DAY -> Value.ACH_NEXT_DAY
ACH_SAME_DAY -> Value.ACH_SAME_DAY
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
ACH_NEXT_DAY -> Known.ACH_NEXT_DAY
ACH_SAME_DAY -> Known.ACH_SAME_DAY
else -> throw LithicInvalidDataException("Unknown Method: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
@JsonDeserialize(builder = PaymentMethodRequestAttributes.Builder::class)
@NoAutoDetect
class PaymentMethodRequestAttributes
private constructor(
private val secCode: SecCode?,
private val additionalProperties: Map,
) {
@JsonProperty("sec_code") fun secCode(): SecCode? = secCode
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
class Builder {
private var secCode: SecCode? = null
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(paymentMethodRequestAttributes: PaymentMethodRequestAttributes) =
apply {
this.secCode = paymentMethodRequestAttributes.secCode
additionalProperties(paymentMethodRequestAttributes.additionalProperties)
}
@JsonProperty("sec_code")
fun secCode(secCode: SecCode) = apply { this.secCode = secCode }
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(): PaymentMethodRequestAttributes =
PaymentMethodRequestAttributes(
checkNotNull(secCode) { "`secCode` is required but was not set" },
additionalProperties.toImmutable()
)
}
class SecCode
@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 /* spotless:off */ other is SecCode && this.value == other.value /* spotless:on */
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val CCD = SecCode(JsonField.of("CCD"))
val PPD = SecCode(JsonField.of("PPD"))
val WEB = SecCode(JsonField.of("WEB"))
fun of(value: String) = SecCode(JsonField.of(value))
}
enum class Known {
CCD,
PPD,
WEB,
}
enum class Value {
CCD,
PPD,
WEB,
_UNKNOWN,
}
fun value(): Value =
when (this) {
CCD -> Value.CCD
PPD -> Value.PPD
WEB -> Value.WEB
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
CCD -> Known.CCD
PPD -> Known.PPD
WEB -> Known.WEB
else -> throw LithicInvalidDataException("Unknown SecCode: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is PaymentMethodRequestAttributes && this.secCode == other.secCode && this.additionalProperties == other.additionalProperties /* spotless:on */
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode = /* spotless:off */ Objects.hash(secCode, additionalProperties) /* spotless:on */
}
return hashCode
}
override fun toString() =
"PaymentMethodRequestAttributes{secCode=$secCode, additionalProperties=$additionalProperties}"
}
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 /* spotless:off */ other is Type && this.value == other.value /* spotless:on */
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val COLLECTION = Type(JsonField.of("COLLECTION"))
val PAYMENT = Type(JsonField.of("PAYMENT"))
fun of(value: String) = Type(JsonField.of(value))
}
enum class Known {
COLLECTION,
PAYMENT,
}
enum class Value {
COLLECTION,
PAYMENT,
_UNKNOWN,
}
fun value(): Value =
when (this) {
COLLECTION -> Value.COLLECTION
PAYMENT -> Value.PAYMENT
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
COLLECTION -> Known.COLLECTION
PAYMENT -> Known.PAYMENT
else -> throw LithicInvalidDataException("Unknown Type: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy