com.increase.api.models.BookkeepingAccountCreateParams.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 BookkeepingAccountCreateParams
constructor(
private val name: String,
private val accountId: String?,
private val complianceCategory: ComplianceCategory?,
private val entityId: String?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun name(): String = name
fun accountId(): String? = accountId
fun complianceCategory(): ComplianceCategory? = complianceCategory
fun entityId(): String? = entityId
internal fun getBody(): BookkeepingAccountCreateBody {
return BookkeepingAccountCreateBody(
name,
accountId,
complianceCategory,
entityId,
additionalBodyProperties,
)
}
internal fun getQueryParams(): Map> = additionalQueryParams
internal fun getHeaders(): Map> = additionalHeaders
@JsonDeserialize(builder = BookkeepingAccountCreateBody.Builder::class)
@NoAutoDetect
class BookkeepingAccountCreateBody
internal constructor(
private val name: String?,
private val accountId: String?,
private val complianceCategory: ComplianceCategory?,
private val entityId: String?,
private val additionalProperties: Map,
) {
private var hashCode: Int = 0
/** The name you choose for the account. */
@JsonProperty("name") fun name(): String? = name
/** The entity, if `compliance_category` is `commingled_cash`. */
@JsonProperty("account_id") fun accountId(): String? = accountId
/** The account compliance category. */
@JsonProperty("compliance_category")
fun complianceCategory(): ComplianceCategory? = complianceCategory
/** The entity, if `compliance_category` is `customer_balance`. */
@JsonProperty("entity_id") fun entityId(): String? = entityId
@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 BookkeepingAccountCreateBody &&
this.name == other.name &&
this.accountId == other.accountId &&
this.complianceCategory == other.complianceCategory &&
this.entityId == other.entityId &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
name,
accountId,
complianceCategory,
entityId,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"BookkeepingAccountCreateBody{name=$name, accountId=$accountId, complianceCategory=$complianceCategory, entityId=$entityId, additionalProperties=$additionalProperties}"
companion object {
fun builder() = Builder()
}
class Builder {
private var name: String? = null
private var accountId: String? = null
private var complianceCategory: ComplianceCategory? = null
private var entityId: String? = null
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(bookkeepingAccountCreateBody: BookkeepingAccountCreateBody) = apply {
this.name = bookkeepingAccountCreateBody.name
this.accountId = bookkeepingAccountCreateBody.accountId
this.complianceCategory = bookkeepingAccountCreateBody.complianceCategory
this.entityId = bookkeepingAccountCreateBody.entityId
additionalProperties(bookkeepingAccountCreateBody.additionalProperties)
}
/** The name you choose for the account. */
@JsonProperty("name") fun name(name: String) = apply { this.name = name }
/** The entity, if `compliance_category` is `commingled_cash`. */
@JsonProperty("account_id")
fun accountId(accountId: String) = apply { this.accountId = accountId }
/** The account compliance category. */
@JsonProperty("compliance_category")
fun complianceCategory(complianceCategory: ComplianceCategory) = apply {
this.complianceCategory = complianceCategory
}
/** The entity, if `compliance_category` is `customer_balance`. */
@JsonProperty("entity_id")
fun entityId(entityId: String) = apply { this.entityId = entityId }
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(): BookkeepingAccountCreateBody =
BookkeepingAccountCreateBody(
checkNotNull(name) { "`name` is required but was not set" },
accountId,
complianceCategory,
entityId,
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 BookkeepingAccountCreateParams &&
this.name == other.name &&
this.accountId == other.accountId &&
this.complianceCategory == other.complianceCategory &&
this.entityId == other.entityId &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
name,
accountId,
complianceCategory,
entityId,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"BookkeepingAccountCreateParams{name=$name, accountId=$accountId, complianceCategory=$complianceCategory, entityId=$entityId, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var name: String? = null
private var accountId: String? = null
private var complianceCategory: ComplianceCategory? = null
private var entityId: String? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
internal fun from(bookkeepingAccountCreateParams: BookkeepingAccountCreateParams) = apply {
this.name = bookkeepingAccountCreateParams.name
this.accountId = bookkeepingAccountCreateParams.accountId
this.complianceCategory = bookkeepingAccountCreateParams.complianceCategory
this.entityId = bookkeepingAccountCreateParams.entityId
additionalQueryParams(bookkeepingAccountCreateParams.additionalQueryParams)
additionalHeaders(bookkeepingAccountCreateParams.additionalHeaders)
additionalBodyProperties(bookkeepingAccountCreateParams.additionalBodyProperties)
}
/** The name you choose for the account. */
fun name(name: String) = apply { this.name = name }
/** The entity, if `compliance_category` is `commingled_cash`. */
fun accountId(accountId: String) = apply { this.accountId = accountId }
/** The account compliance category. */
fun complianceCategory(complianceCategory: ComplianceCategory) = apply {
this.complianceCategory = complianceCategory
}
/** The entity, if `compliance_category` is `customer_balance`. */
fun entityId(entityId: String) = apply { this.entityId = entityId }
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(): BookkeepingAccountCreateParams =
BookkeepingAccountCreateParams(
checkNotNull(name) { "`name` is required but was not set" },
accountId,
complianceCategory,
entityId,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
class ComplianceCategory
@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 ComplianceCategory && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val COMMINGLED_CASH = ComplianceCategory(JsonField.of("commingled_cash"))
val CUSTOMER_BALANCE = ComplianceCategory(JsonField.of("customer_balance"))
fun of(value: String) = ComplianceCategory(JsonField.of(value))
}
enum class Known {
COMMINGLED_CASH,
CUSTOMER_BALANCE,
}
enum class Value {
COMMINGLED_CASH,
CUSTOMER_BALANCE,
_UNKNOWN,
}
fun value(): Value =
when (this) {
COMMINGLED_CASH -> Value.COMMINGLED_CASH
CUSTOMER_BALANCE -> Value.CUSTOMER_BALANCE
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
COMMINGLED_CASH -> Known.COMMINGLED_CASH
CUSTOMER_BALANCE -> Known.CUSTOMER_BALANCE
else -> throw IncreaseInvalidDataException("Unknown ComplianceCategory: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
}