com.increase.api.models.AccountNumberCreateParams.kt Maven / Gradle / Ivy
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
class AccountNumberCreateParams
constructor(
private val accountId: String,
private val name: String,
private val inboundAch: InboundAch?,
private val inboundChecks: InboundChecks?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun accountId(): String = accountId
fun name(): String = name
fun inboundAch(): InboundAch? = inboundAch
fun inboundChecks(): InboundChecks? = inboundChecks
internal fun getBody(): AccountNumberCreateBody {
return AccountNumberCreateBody(
accountId,
name,
inboundAch,
inboundChecks,
additionalBodyProperties,
)
}
internal fun getQueryParams(): Map> = additionalQueryParams
internal fun getHeaders(): Map> = additionalHeaders
@JsonDeserialize(builder = AccountNumberCreateBody.Builder::class)
@NoAutoDetect
class AccountNumberCreateBody
internal constructor(
private val accountId: String?,
private val name: String?,
private val inboundAch: InboundAch?,
private val inboundChecks: InboundChecks?,
private val additionalProperties: Map,
) {
private var hashCode: Int = 0
/** The Account the Account Number should belong to. */
@JsonProperty("account_id") fun accountId(): String? = accountId
/** The name you choose for the Account Number. */
@JsonProperty("name") fun name(): String? = name
/** Options related to how this Account Number should handle inbound ACH transfers. */
@JsonProperty("inbound_ach") fun inboundAch(): InboundAch? = inboundAch
/** Options related to how this Account Number should handle inbound check withdrawals. */
@JsonProperty("inbound_checks") fun inboundChecks(): InboundChecks? = inboundChecks
@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 AccountNumberCreateBody &&
this.accountId == other.accountId &&
this.name == other.name &&
this.inboundAch == other.inboundAch &&
this.inboundChecks == other.inboundChecks &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
accountId,
name,
inboundAch,
inboundChecks,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"AccountNumberCreateBody{accountId=$accountId, name=$name, inboundAch=$inboundAch, inboundChecks=$inboundChecks, additionalProperties=$additionalProperties}"
companion object {
fun builder() = Builder()
}
class Builder {
private var accountId: String? = null
private var name: String? = null
private var inboundAch: InboundAch? = null
private var inboundChecks: InboundChecks? = null
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(accountNumberCreateBody: AccountNumberCreateBody) = apply {
this.accountId = accountNumberCreateBody.accountId
this.name = accountNumberCreateBody.name
this.inboundAch = accountNumberCreateBody.inboundAch
this.inboundChecks = accountNumberCreateBody.inboundChecks
additionalProperties(accountNumberCreateBody.additionalProperties)
}
/** The Account the Account Number should belong to. */
@JsonProperty("account_id")
fun accountId(accountId: String) = apply { this.accountId = accountId }
/** The name you choose for the Account Number. */
@JsonProperty("name") fun name(name: String) = apply { this.name = name }
/** Options related to how this Account Number should handle inbound ACH transfers. */
@JsonProperty("inbound_ach")
fun inboundAch(inboundAch: InboundAch) = apply { this.inboundAch = inboundAch }
/**
* Options related to how this Account Number should handle inbound check withdrawals.
*/
@JsonProperty("inbound_checks")
fun inboundChecks(inboundChecks: InboundChecks) = apply {
this.inboundChecks = inboundChecks
}
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(): AccountNumberCreateBody =
AccountNumberCreateBody(
checkNotNull(accountId) { "`accountId` is required but was not set" },
checkNotNull(name) { "`name` is required but was not set" },
inboundAch,
inboundChecks,
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 AccountNumberCreateParams &&
this.accountId == other.accountId &&
this.name == other.name &&
this.inboundAch == other.inboundAch &&
this.inboundChecks == other.inboundChecks &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
accountId,
name,
inboundAch,
inboundChecks,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"AccountNumberCreateParams{accountId=$accountId, name=$name, inboundAch=$inboundAch, inboundChecks=$inboundChecks, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var accountId: String? = null
private var name: String? = null
private var inboundAch: InboundAch? = null
private var inboundChecks: InboundChecks? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
internal fun from(accountNumberCreateParams: AccountNumberCreateParams) = apply {
this.accountId = accountNumberCreateParams.accountId
this.name = accountNumberCreateParams.name
this.inboundAch = accountNumberCreateParams.inboundAch
this.inboundChecks = accountNumberCreateParams.inboundChecks
additionalQueryParams(accountNumberCreateParams.additionalQueryParams)
additionalHeaders(accountNumberCreateParams.additionalHeaders)
additionalBodyProperties(accountNumberCreateParams.additionalBodyProperties)
}
/** The Account the Account Number should belong to. */
fun accountId(accountId: String) = apply { this.accountId = accountId }
/** The name you choose for the Account Number. */
fun name(name: String) = apply { this.name = name }
/** Options related to how this Account Number should handle inbound ACH transfers. */
fun inboundAch(inboundAch: InboundAch) = apply { this.inboundAch = inboundAch }
/** Options related to how this Account Number should handle inbound check withdrawals. */
fun inboundChecks(inboundChecks: InboundChecks) = apply {
this.inboundChecks = inboundChecks
}
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(): AccountNumberCreateParams =
AccountNumberCreateParams(
checkNotNull(accountId) { "`accountId` is required but was not set" },
checkNotNull(name) { "`name` is required but was not set" },
inboundAch,
inboundChecks,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
/** Options related to how this Account Number should handle inbound ACH transfers. */
@JsonDeserialize(builder = InboundAch.Builder::class)
@NoAutoDetect
class InboundAch
private constructor(
private val debitStatus: DebitStatus?,
private val additionalProperties: Map,
) {
private var hashCode: Int = 0
/**
* Whether ACH debits are allowed against this Account Number. Note that ACH debits will be
* declined if this is `allowed` but the Account Number is not active.
*/
@JsonProperty("debit_status") fun debitStatus(): DebitStatus? = debitStatus
@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 InboundAch &&
this.debitStatus == other.debitStatus &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode = Objects.hash(debitStatus, additionalProperties)
}
return hashCode
}
override fun toString() =
"InboundAch{debitStatus=$debitStatus, additionalProperties=$additionalProperties}"
companion object {
fun builder() = Builder()
}
class Builder {
private var debitStatus: DebitStatus? = null
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(inboundAch: InboundAch) = apply {
this.debitStatus = inboundAch.debitStatus
additionalProperties(inboundAch.additionalProperties)
}
/**
* Whether ACH debits are allowed against this Account Number. Note that ACH debits will
* be declined if this is `allowed` but the Account Number is not active.
*/
@JsonProperty("debit_status")
fun debitStatus(debitStatus: DebitStatus) = apply { this.debitStatus = debitStatus }
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(): InboundAch =
InboundAch(
checkNotNull(debitStatus) { "`debitStatus` is required but was not set" },
additionalProperties.toUnmodifiable()
)
}
class DebitStatus
@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 DebitStatus && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val ALLOWED = DebitStatus(JsonField.of("allowed"))
val BLOCKED = DebitStatus(JsonField.of("blocked"))
fun of(value: String) = DebitStatus(JsonField.of(value))
}
enum class Known {
ALLOWED,
BLOCKED,
}
enum class Value {
ALLOWED,
BLOCKED,
_UNKNOWN,
}
fun value(): Value =
when (this) {
ALLOWED -> Value.ALLOWED
BLOCKED -> Value.BLOCKED
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
ALLOWED -> Known.ALLOWED
BLOCKED -> Known.BLOCKED
else -> throw IncreaseInvalidDataException("Unknown DebitStatus: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
}
/** Options related to how this Account Number should handle inbound check withdrawals. */
@JsonDeserialize(builder = InboundChecks.Builder::class)
@NoAutoDetect
class InboundChecks
private constructor(
private val status: Status?,
private val additionalProperties: Map,
) {
private var hashCode: Int = 0
/** How Increase should process checks with this account number printed on them. */
@JsonProperty("status") fun status(): Status? = status
@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 InboundChecks &&
this.status == other.status &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode = Objects.hash(status, additionalProperties)
}
return hashCode
}
override fun toString() =
"InboundChecks{status=$status, additionalProperties=$additionalProperties}"
companion object {
fun builder() = Builder()
}
class Builder {
private var status: Status? = null
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(inboundChecks: InboundChecks) = apply {
this.status = inboundChecks.status
additionalProperties(inboundChecks.additionalProperties)
}
/** How Increase should process checks with this account number printed on them. */
@JsonProperty("status") fun status(status: Status) = apply { this.status = status }
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(): InboundChecks =
InboundChecks(
checkNotNull(status) { "`status` is required but was not set" },
additionalProperties.toUnmodifiable()
)
}
class Status
@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 Status && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val ALLOWED = Status(JsonField.of("allowed"))
val CHECK_TRANSFERS_ONLY = Status(JsonField.of("check_transfers_only"))
fun of(value: String) = Status(JsonField.of(value))
}
enum class Known {
ALLOWED,
CHECK_TRANSFERS_ONLY,
}
enum class Value {
ALLOWED,
CHECK_TRANSFERS_ONLY,
_UNKNOWN,
}
fun value(): Value =
when (this) {
ALLOWED -> Value.ALLOWED
CHECK_TRANSFERS_ONLY -> Value.CHECK_TRANSFERS_ONLY
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
ALLOWED -> Known.ALLOWED
CHECK_TRANSFERS_ONLY -> Known.CHECK_TRANSFERS_ONLY
else -> throw IncreaseInvalidDataException("Unknown Status: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
}
}