com.increase.api.models.AccountNumberCreateParams.kt Maven / Gradle / Ivy
// 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.http.Headers
import com.increase.api.core.http.QueryParams
import com.increase.api.core.toImmutable
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 additionalHeaders: Headers,
private val additionalQueryParams: QueryParams,
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 getHeaders(): Headers = additionalHeaders
internal fun getQueryParams(): QueryParams = additionalQueryParams
@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,
) {
/** 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)
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.toImmutable(),
)
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is AccountNumberCreateBody && this.accountId == other.accountId && this.name == other.name && this.inboundAch == other.inboundAch && this.inboundChecks == other.inboundChecks && this.additionalProperties == other.additionalProperties /* spotless:on */
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode = /* spotless:off */ Objects.hash(accountId, name, inboundAch, inboundChecks, additionalProperties) /* spotless:on */
}
return hashCode
}
override fun toString() =
"AccountNumberCreateBody{accountId=$accountId, name=$name, inboundAch=$inboundAch, inboundChecks=$inboundChecks, 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 AccountNumberCreateParams && this.accountId == other.accountId && this.name == other.name && this.inboundAch == other.inboundAch && this.inboundChecks == other.inboundChecks && this.additionalHeaders == other.additionalHeaders && this.additionalQueryParams == other.additionalQueryParams && this.additionalBodyProperties == other.additionalBodyProperties /* spotless:on */
}
override fun hashCode(): Int {
return /* spotless:off */ Objects.hash(accountId, name, inboundAch, inboundChecks, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */
}
override fun toString() =
"AccountNumberCreateParams{accountId=$accountId, name=$name, inboundAch=$inboundAch, inboundChecks=$inboundChecks, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, 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 additionalHeaders: Headers.Builder = Headers.builder()
private var additionalQueryParams: QueryParams.Builder = QueryParams.builder()
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
additionalHeaders(accountNumberCreateParams.additionalHeaders)
additionalQueryParams(accountNumberCreateParams.additionalQueryParams)
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 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(): AccountNumberCreateParams =
AccountNumberCreateParams(
checkNotNull(accountId) { "`accountId` is required but was not set" },
checkNotNull(name) { "`name` is required but was not set" },
inboundAch,
inboundChecks,
additionalHeaders.build(),
additionalQueryParams.build(),
additionalBodyProperties.toImmutable(),
)
}
/** 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,
) {
/**
* 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. If you do not specify
* this field, the default is `allowed`.
*/
@JsonProperty("debit_status") fun debitStatus(): DebitStatus? = debitStatus
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
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. If you do not
* specify this field, the default is `allowed`.
*/
@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.toImmutable()
)
}
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 /* spotless:off */ other is DebitStatus && this.value == other.value /* spotless:on */
}
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()
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is InboundAch && this.debitStatus == other.debitStatus && this.additionalProperties == other.additionalProperties /* spotless:on */
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode = /* spotless:off */ Objects.hash(debitStatus, additionalProperties) /* spotless:on */
}
return hashCode
}
override fun toString() =
"InboundAch{debitStatus=$debitStatus, additionalProperties=$additionalProperties}"
}
/** 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,
) {
/**
* How Increase should process checks with this account number printed on them. If you do
* not specify this field, the default is `check_transfers_only`.
*/
@JsonProperty("status") fun status(): Status? = status
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
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. If you
* do not specify this field, the default is `check_transfers_only`.
*/
@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.toImmutable()
)
}
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 /* spotless:off */ other is Status && this.value == other.value /* spotless:on */
}
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()
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is InboundChecks && this.status == other.status && this.additionalProperties == other.additionalProperties /* spotless:on */
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode = /* spotless:off */ Objects.hash(status, additionalProperties) /* spotless:on */
}
return hashCode
}
override fun toString() =
"InboundChecks{status=$status, additionalProperties=$additionalProperties}"
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy