com.lithic.api.models.ExternalBankAccountUpdateParams.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.time.LocalDate
import java.util.Objects
import java.util.Optional
class ExternalBankAccountUpdateParams
constructor(
private val externalBankAccountToken: String,
private val address: ExternalBankAccountAddress?,
private val companyId: String?,
private val dob: LocalDate?,
private val doingBusinessAs: String?,
private val name: String?,
private val owner: String?,
private val ownerType: OwnerType?,
private val userDefinedId: String?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun externalBankAccountToken(): String = externalBankAccountToken
fun address(): Optional = Optional.ofNullable(address)
fun companyId(): Optional = Optional.ofNullable(companyId)
fun dob(): Optional = Optional.ofNullable(dob)
fun doingBusinessAs(): Optional = Optional.ofNullable(doingBusinessAs)
fun name(): Optional = Optional.ofNullable(name)
fun owner(): Optional = Optional.ofNullable(owner)
fun ownerType(): Optional = Optional.ofNullable(ownerType)
fun userDefinedId(): Optional = Optional.ofNullable(userDefinedId)
@JvmSynthetic
internal fun getBody(): ExternalBankAccountUpdateBody {
return ExternalBankAccountUpdateBody(
address,
companyId,
dob,
doingBusinessAs,
name,
owner,
ownerType,
userDefinedId,
additionalBodyProperties,
)
}
@JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams
@JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
fun getPathParam(index: Int): String {
return when (index) {
0 -> externalBankAccountToken
else -> ""
}
}
@JsonDeserialize(builder = ExternalBankAccountUpdateBody.Builder::class)
@NoAutoDetect
class ExternalBankAccountUpdateBody
internal constructor(
private val address: ExternalBankAccountAddress?,
private val companyId: String?,
private val dob: LocalDate?,
private val doingBusinessAs: String?,
private val name: String?,
private val owner: String?,
private val ownerType: OwnerType?,
private val userDefinedId: String?,
private val additionalProperties: Map,
) {
/** Address */
@JsonProperty("address") fun address(): ExternalBankAccountAddress? = address
/** Optional field that helps identify bank accounts in receipts */
@JsonProperty("company_id") fun companyId(): String? = companyId
/** Date of Birth of the Individual that owns the external bank account */
@JsonProperty("dob") fun dob(): LocalDate? = dob
/** Doing Business As */
@JsonProperty("doing_business_as") fun doingBusinessAs(): String? = doingBusinessAs
/** The nickname for this External Bank Account */
@JsonProperty("name") fun name(): String? = name
/**
* Legal Name of the business or individual who owns the external account. This will appear
* in statements
*/
@JsonProperty("owner") fun owner(): String? = owner
/** Owner Type */
@JsonProperty("owner_type") fun ownerType(): OwnerType? = ownerType
/** User Defined ID */
@JsonProperty("user_defined_id") fun userDefinedId(): String? = userDefinedId
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
class Builder {
private var address: ExternalBankAccountAddress? = null
private var companyId: String? = null
private var dob: LocalDate? = null
private var doingBusinessAs: String? = null
private var name: String? = null
private var owner: String? = null
private var ownerType: OwnerType? = null
private var userDefinedId: String? = null
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(externalBankAccountUpdateBody: ExternalBankAccountUpdateBody) =
apply {
this.address = externalBankAccountUpdateBody.address
this.companyId = externalBankAccountUpdateBody.companyId
this.dob = externalBankAccountUpdateBody.dob
this.doingBusinessAs = externalBankAccountUpdateBody.doingBusinessAs
this.name = externalBankAccountUpdateBody.name
this.owner = externalBankAccountUpdateBody.owner
this.ownerType = externalBankAccountUpdateBody.ownerType
this.userDefinedId = externalBankAccountUpdateBody.userDefinedId
additionalProperties(externalBankAccountUpdateBody.additionalProperties)
}
/** Address */
@JsonProperty("address")
fun address(address: ExternalBankAccountAddress) = apply { this.address = address }
/** Optional field that helps identify bank accounts in receipts */
@JsonProperty("company_id")
fun companyId(companyId: String) = apply { this.companyId = companyId }
/** Date of Birth of the Individual that owns the external bank account */
@JsonProperty("dob") fun dob(dob: LocalDate) = apply { this.dob = dob }
/** Doing Business As */
@JsonProperty("doing_business_as")
fun doingBusinessAs(doingBusinessAs: String) = apply {
this.doingBusinessAs = doingBusinessAs
}
/** The nickname for this External Bank Account */
@JsonProperty("name") fun name(name: String) = apply { this.name = name }
/**
* Legal Name of the business or individual who owns the external account. This will
* appear in statements
*/
@JsonProperty("owner") fun owner(owner: String) = apply { this.owner = owner }
/** Owner Type */
@JsonProperty("owner_type")
fun ownerType(ownerType: OwnerType) = apply { this.ownerType = ownerType }
/** User Defined ID */
@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(): ExternalBankAccountUpdateBody =
ExternalBankAccountUpdateBody(
address,
companyId,
dob,
doingBusinessAs,
name,
owner,
ownerType,
userDefinedId,
additionalProperties.toUnmodifiable(),
)
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is ExternalBankAccountUpdateBody &&
this.address == other.address &&
this.companyId == other.companyId &&
this.dob == other.dob &&
this.doingBusinessAs == other.doingBusinessAs &&
this.name == other.name &&
this.owner == other.owner &&
this.ownerType == other.ownerType &&
this.userDefinedId == other.userDefinedId &&
this.additionalProperties == other.additionalProperties
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
address,
companyId,
dob,
doingBusinessAs,
name,
owner,
ownerType,
userDefinedId,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"ExternalBankAccountUpdateBody{address=$address, companyId=$companyId, dob=$dob, doingBusinessAs=$doingBusinessAs, name=$name, owner=$owner, ownerType=$ownerType, userDefinedId=$userDefinedId, additionalProperties=$additionalProperties}"
}
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 ExternalBankAccountUpdateParams &&
this.externalBankAccountToken == other.externalBankAccountToken &&
this.address == other.address &&
this.companyId == other.companyId &&
this.dob == other.dob &&
this.doingBusinessAs == other.doingBusinessAs &&
this.name == other.name &&
this.owner == other.owner &&
this.ownerType == other.ownerType &&
this.userDefinedId == other.userDefinedId &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
externalBankAccountToken,
address,
companyId,
dob,
doingBusinessAs,
name,
owner,
ownerType,
userDefinedId,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"ExternalBankAccountUpdateParams{externalBankAccountToken=$externalBankAccountToken, address=$address, companyId=$companyId, dob=$dob, doingBusinessAs=$doingBusinessAs, name=$name, owner=$owner, ownerType=$ownerType, userDefinedId=$userDefinedId, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var externalBankAccountToken: String? = null
private var address: ExternalBankAccountAddress? = null
private var companyId: String? = null
private var dob: LocalDate? = null
private var doingBusinessAs: String? = null
private var name: String? = null
private var owner: String? = null
private var ownerType: OwnerType? = null
private var userDefinedId: String? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(externalBankAccountUpdateParams: ExternalBankAccountUpdateParams) =
apply {
this.externalBankAccountToken =
externalBankAccountUpdateParams.externalBankAccountToken
this.address = externalBankAccountUpdateParams.address
this.companyId = externalBankAccountUpdateParams.companyId
this.dob = externalBankAccountUpdateParams.dob
this.doingBusinessAs = externalBankAccountUpdateParams.doingBusinessAs
this.name = externalBankAccountUpdateParams.name
this.owner = externalBankAccountUpdateParams.owner
this.ownerType = externalBankAccountUpdateParams.ownerType
this.userDefinedId = externalBankAccountUpdateParams.userDefinedId
additionalQueryParams(externalBankAccountUpdateParams.additionalQueryParams)
additionalHeaders(externalBankAccountUpdateParams.additionalHeaders)
additionalBodyProperties(externalBankAccountUpdateParams.additionalBodyProperties)
}
fun externalBankAccountToken(externalBankAccountToken: String) = apply {
this.externalBankAccountToken = externalBankAccountToken
}
/** Address */
fun address(address: ExternalBankAccountAddress) = apply { this.address = address }
/** Optional field that helps identify bank accounts in receipts */
fun companyId(companyId: String) = apply { this.companyId = companyId }
/** Date of Birth of the Individual that owns the external bank account */
fun dob(dob: LocalDate) = apply { this.dob = dob }
/** Doing Business As */
fun doingBusinessAs(doingBusinessAs: String) = apply {
this.doingBusinessAs = doingBusinessAs
}
/** The nickname for this External Bank Account */
fun name(name: String) = apply { this.name = name }
/**
* Legal Name of the business or individual who owns the external account. This will appear
* in statements
*/
fun owner(owner: String) = apply { this.owner = owner }
/** Owner Type */
fun ownerType(ownerType: OwnerType) = apply { this.ownerType = ownerType }
/** User Defined ID */
fun userDefinedId(userDefinedId: String) = apply { this.userDefinedId = userDefinedId }
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(): ExternalBankAccountUpdateParams =
ExternalBankAccountUpdateParams(
checkNotNull(externalBankAccountToken) {
"`externalBankAccountToken` is required but was not set"
},
address,
companyId,
dob,
doingBusinessAs,
name,
owner,
ownerType,
userDefinedId,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
}