com.increase.api.models.ExternalAccountCreateParams.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of increase-java-core Show documentation
Show all versions of increase-java-core Show documentation
An SDK library for increase
The newest version!
// File generated from our OpenAPI spec by Stainless.
package com.increase.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.increase.api.core.Enum
import com.increase.api.core.ExcludeMissing
import com.increase.api.core.JsonField
import com.increase.api.core.JsonValue
import com.increase.api.core.NoAutoDetect
import com.increase.api.core.toUnmodifiable
import com.increase.api.errors.IncreaseInvalidDataException
import com.increase.api.models.*
import java.util.Objects
import java.util.Optional
class ExternalAccountCreateParams
constructor(
private val accountNumber: String,
private val description: String,
private val routingNumber: String,
private val accountHolder: AccountHolder?,
private val funding: Funding?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun accountNumber(): String = accountNumber
fun description(): String = description
fun routingNumber(): String = routingNumber
fun accountHolder(): Optional = Optional.ofNullable(accountHolder)
fun funding(): Optional = Optional.ofNullable(funding)
@JvmSynthetic
internal fun getBody(): ExternalAccountCreateBody {
return ExternalAccountCreateBody(
accountNumber,
description,
routingNumber,
accountHolder,
funding,
additionalBodyProperties,
)
}
@JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams
@JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
@JsonDeserialize(builder = ExternalAccountCreateBody.Builder::class)
@NoAutoDetect
class ExternalAccountCreateBody
internal constructor(
private val accountNumber: String?,
private val description: String?,
private val routingNumber: String?,
private val accountHolder: AccountHolder?,
private val funding: Funding?,
private val additionalProperties: Map,
) {
private var hashCode: Int = 0
/** The account number for the destination account. */
@JsonProperty("account_number") fun accountNumber(): String? = accountNumber
/** The name you choose for the Account. */
@JsonProperty("description") fun description(): String? = description
/**
* The American Bankers' Association (ABA) Routing Transit Number (RTN) for the destination
* account.
*/
@JsonProperty("routing_number") fun routingNumber(): String? = routingNumber
/** The type of entity that owns the External Account. */
@JsonProperty("account_holder") fun accountHolder(): AccountHolder? = accountHolder
/** The type of the destination account. Defaults to `checking`. */
@JsonProperty("funding") fun funding(): Funding? = funding
@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 ExternalAccountCreateBody &&
this.accountNumber == other.accountNumber &&
this.description == other.description &&
this.routingNumber == other.routingNumber &&
this.accountHolder == other.accountHolder &&
this.funding == other.funding &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
accountNumber,
description,
routingNumber,
accountHolder,
funding,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"ExternalAccountCreateBody{accountNumber=$accountNumber, description=$description, routingNumber=$routingNumber, accountHolder=$accountHolder, funding=$funding, additionalProperties=$additionalProperties}"
companion object {
@JvmStatic fun builder() = Builder()
}
class Builder {
private var accountNumber: String? = null
private var description: String? = null
private var routingNumber: String? = null
private var accountHolder: AccountHolder? = null
private var funding: Funding? = null
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(externalAccountCreateBody: ExternalAccountCreateBody) = apply {
this.accountNumber = externalAccountCreateBody.accountNumber
this.description = externalAccountCreateBody.description
this.routingNumber = externalAccountCreateBody.routingNumber
this.accountHolder = externalAccountCreateBody.accountHolder
this.funding = externalAccountCreateBody.funding
additionalProperties(externalAccountCreateBody.additionalProperties)
}
/** The account number for the destination account. */
@JsonProperty("account_number")
fun accountNumber(accountNumber: String) = apply { this.accountNumber = accountNumber }
/** The name you choose for the Account. */
@JsonProperty("description")
fun description(description: String) = apply { this.description = description }
/**
* The American Bankers' Association (ABA) Routing Transit Number (RTN) for the
* destination account.
*/
@JsonProperty("routing_number")
fun routingNumber(routingNumber: String) = apply { this.routingNumber = routingNumber }
/** The type of entity that owns the External Account. */
@JsonProperty("account_holder")
fun accountHolder(accountHolder: AccountHolder) = apply {
this.accountHolder = accountHolder
}
/** The type of the destination account. Defaults to `checking`. */
@JsonProperty("funding")
fun funding(funding: Funding) = apply { this.funding = funding }
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(): ExternalAccountCreateBody =
ExternalAccountCreateBody(
checkNotNull(accountNumber) { "`accountNumber` is required but was not set" },
checkNotNull(description) { "`description` is required but was not set" },
checkNotNull(routingNumber) { "`routingNumber` is required but was not set" },
accountHolder,
funding,
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 ExternalAccountCreateParams &&
this.accountNumber == other.accountNumber &&
this.description == other.description &&
this.routingNumber == other.routingNumber &&
this.accountHolder == other.accountHolder &&
this.funding == other.funding &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
accountNumber,
description,
routingNumber,
accountHolder,
funding,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"ExternalAccountCreateParams{accountNumber=$accountNumber, description=$description, routingNumber=$routingNumber, accountHolder=$accountHolder, funding=$funding, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var accountNumber: String? = null
private var description: String? = null
private var routingNumber: String? = null
private var accountHolder: AccountHolder? = null
private var funding: Funding? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(externalAccountCreateParams: ExternalAccountCreateParams) = apply {
this.accountNumber = externalAccountCreateParams.accountNumber
this.description = externalAccountCreateParams.description
this.routingNumber = externalAccountCreateParams.routingNumber
this.accountHolder = externalAccountCreateParams.accountHolder
this.funding = externalAccountCreateParams.funding
additionalQueryParams(externalAccountCreateParams.additionalQueryParams)
additionalHeaders(externalAccountCreateParams.additionalHeaders)
additionalBodyProperties(externalAccountCreateParams.additionalBodyProperties)
}
/** The account number for the destination account. */
fun accountNumber(accountNumber: String) = apply { this.accountNumber = accountNumber }
/** The name you choose for the Account. */
fun description(description: String) = apply { this.description = description }
/**
* The American Bankers' Association (ABA) Routing Transit Number (RTN) for the destination
* account.
*/
fun routingNumber(routingNumber: String) = apply { this.routingNumber = routingNumber }
/** The type of entity that owns the External Account. */
fun accountHolder(accountHolder: AccountHolder) = apply {
this.accountHolder = accountHolder
}
/** The type of the destination account. Defaults to `checking`. */
fun funding(funding: Funding) = apply { this.funding = funding }
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(): ExternalAccountCreateParams =
ExternalAccountCreateParams(
checkNotNull(accountNumber) { "`accountNumber` is required but was not set" },
checkNotNull(description) { "`description` is required but was not set" },
checkNotNull(routingNumber) { "`routingNumber` is required but was not set" },
accountHolder,
funding,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
class AccountHolder
@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 AccountHolder && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
@JvmField val BUSINESS = AccountHolder(JsonField.of("business"))
@JvmField val INDIVIDUAL = AccountHolder(JsonField.of("individual"))
@JvmField val UNKNOWN = AccountHolder(JsonField.of("unknown"))
@JvmStatic fun of(value: String) = AccountHolder(JsonField.of(value))
}
enum class Known {
BUSINESS,
INDIVIDUAL,
UNKNOWN,
}
enum class Value {
BUSINESS,
INDIVIDUAL,
UNKNOWN,
_UNKNOWN,
}
fun value(): Value =
when (this) {
BUSINESS -> Value.BUSINESS
INDIVIDUAL -> Value.INDIVIDUAL
UNKNOWN -> Value.UNKNOWN
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
BUSINESS -> Known.BUSINESS
INDIVIDUAL -> Known.INDIVIDUAL
UNKNOWN -> Known.UNKNOWN
else -> throw IncreaseInvalidDataException("Unknown AccountHolder: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
class Funding
@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 Funding && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
@JvmField val CHECKING = Funding(JsonField.of("checking"))
@JvmField val SAVINGS = Funding(JsonField.of("savings"))
@JvmField val OTHER = Funding(JsonField.of("other"))
@JvmStatic fun of(value: String) = Funding(JsonField.of(value))
}
enum class Known {
CHECKING,
SAVINGS,
OTHER,
}
enum class Value {
CHECKING,
SAVINGS,
OTHER,
_UNKNOWN,
}
fun value(): Value =
when (this) {
CHECKING -> Value.CHECKING
SAVINGS -> Value.SAVINGS
OTHER -> Value.OTHER
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
CHECKING -> Known.CHECKING
SAVINGS -> Known.SAVINGS
OTHER -> Known.OTHER
else -> throw IncreaseInvalidDataException("Unknown Funding: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
}