com.lithic.api.models.FinancialAccountCreditConfig.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.
// 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.toUnmodifiable
import java.util.Objects
@JsonDeserialize(builder = FinancialAccountCreditConfig.Builder::class)
@NoAutoDetect
class FinancialAccountCreditConfig
private constructor(
private val accountToken: JsonField,
private val creditLimit: JsonField,
private val externalBankAccountToken: JsonField,
private val creditProductToken: JsonField,
private val additionalProperties: Map,
) {
private var validated: Boolean = false
private var hashCode: Int = 0
/** Globally unique identifier for the account */
fun accountToken(): String = accountToken.getRequired("account_token")
fun creditLimit(): Long? = creditLimit.getNullable("credit_limit")
fun externalBankAccountToken(): String? =
externalBankAccountToken.getNullable("external_bank_account_token")
/** Globally unique identifier for the credit product */
fun creditProductToken(): String? = creditProductToken.getNullable("credit_product_token")
/** Globally unique identifier for the account */
@JsonProperty("account_token") @ExcludeMissing fun _accountToken() = accountToken
@JsonProperty("credit_limit") @ExcludeMissing fun _creditLimit() = creditLimit
@JsonProperty("external_bank_account_token")
@ExcludeMissing
fun _externalBankAccountToken() = externalBankAccountToken
/** Globally unique identifier for the credit product */
@JsonProperty("credit_product_token")
@ExcludeMissing
fun _creditProductToken() = creditProductToken
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun validate(): FinancialAccountCreditConfig = apply {
if (!validated) {
accountToken()
creditLimit()
externalBankAccountToken()
creditProductToken()
validated = true
}
}
fun toBuilder() = Builder().from(this)
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is FinancialAccountCreditConfig &&
this.accountToken == other.accountToken &&
this.creditLimit == other.creditLimit &&
this.externalBankAccountToken == other.externalBankAccountToken &&
this.creditProductToken == other.creditProductToken &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
accountToken,
creditLimit,
externalBankAccountToken,
creditProductToken,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"FinancialAccountCreditConfig{accountToken=$accountToken, creditLimit=$creditLimit, externalBankAccountToken=$externalBankAccountToken, creditProductToken=$creditProductToken, additionalProperties=$additionalProperties}"
companion object {
fun builder() = Builder()
}
class Builder {
private var accountToken: JsonField = JsonMissing.of()
private var creditLimit: JsonField = JsonMissing.of()
private var externalBankAccountToken: JsonField = JsonMissing.of()
private var creditProductToken: JsonField = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(financialAccountCreditConfig: FinancialAccountCreditConfig) = apply {
this.accountToken = financialAccountCreditConfig.accountToken
this.creditLimit = financialAccountCreditConfig.creditLimit
this.externalBankAccountToken = financialAccountCreditConfig.externalBankAccountToken
this.creditProductToken = financialAccountCreditConfig.creditProductToken
additionalProperties(financialAccountCreditConfig.additionalProperties)
}
/** Globally unique identifier for the account */
fun accountToken(accountToken: String) = accountToken(JsonField.of(accountToken))
/** Globally unique identifier for the account */
@JsonProperty("account_token")
@ExcludeMissing
fun accountToken(accountToken: JsonField) = apply {
this.accountToken = accountToken
}
fun creditLimit(creditLimit: Long) = creditLimit(JsonField.of(creditLimit))
@JsonProperty("credit_limit")
@ExcludeMissing
fun creditLimit(creditLimit: JsonField) = apply { this.creditLimit = creditLimit }
fun externalBankAccountToken(externalBankAccountToken: String) =
externalBankAccountToken(JsonField.of(externalBankAccountToken))
@JsonProperty("external_bank_account_token")
@ExcludeMissing
fun externalBankAccountToken(externalBankAccountToken: JsonField) = apply {
this.externalBankAccountToken = externalBankAccountToken
}
/** Globally unique identifier for the credit product */
fun creditProductToken(creditProductToken: String) =
creditProductToken(JsonField.of(creditProductToken))
/** Globally unique identifier for the credit product */
@JsonProperty("credit_product_token")
@ExcludeMissing
fun creditProductToken(creditProductToken: JsonField) = apply {
this.creditProductToken = creditProductToken
}
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(): FinancialAccountCreditConfig =
FinancialAccountCreditConfig(
accountToken,
creditLimit,
externalBankAccountToken,
creditProductToken,
additionalProperties.toUnmodifiable(),
)
}
}