com.increase.api.models.BookkeepingAccount.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.JsonMissing
import com.increase.api.core.JsonValue
import com.increase.api.core.NoAutoDetect
import com.increase.api.core.toImmutable
import com.increase.api.errors.IncreaseInvalidDataException
import java.util.Objects
/**
* Accounts are T-accounts. They can store accounting entries. Your compliance setup might require
* annotating money movements using this API. Learn more in our
* [guide to Bookkeeping](https://increase.com/documentation/bookkeeping#bookkeeping).
*/
@JsonDeserialize(builder = BookkeepingAccount.Builder::class)
@NoAutoDetect
class BookkeepingAccount
private constructor(
private val accountId: JsonField,
private val complianceCategory: JsonField,
private val entityId: JsonField,
private val id: JsonField,
private val idempotencyKey: JsonField,
private val name: JsonField,
private val type: JsonField,
private val additionalProperties: Map,
) {
private var validated: Boolean = false
/** The API Account associated with this bookkeeping account. */
fun accountId(): String? = accountId.getNullable("account_id")
/** The compliance category of the account. */
fun complianceCategory(): ComplianceCategory? =
complianceCategory.getNullable("compliance_category")
/** The Entity associated with this bookkeeping account. */
fun entityId(): String? = entityId.getNullable("entity_id")
/** The account identifier. */
fun id(): String = id.getRequired("id")
/**
* The idempotency key you chose for this object. This value is unique across Increase and is
* used to ensure that a request is only processed once. Learn more about
* [idempotency](https://increase.com/documentation/idempotency-keys).
*/
fun idempotencyKey(): String? = idempotencyKey.getNullable("idempotency_key")
/** The name you choose for the account. */
fun name(): String = name.getRequired("name")
/**
* A constant representing the object's type. For this resource it will always be
* `bookkeeping_account`.
*/
fun type(): Type = type.getRequired("type")
/** The API Account associated with this bookkeeping account. */
@JsonProperty("account_id") @ExcludeMissing fun _accountId() = accountId
/** The compliance category of the account. */
@JsonProperty("compliance_category")
@ExcludeMissing
fun _complianceCategory() = complianceCategory
/** The Entity associated with this bookkeeping account. */
@JsonProperty("entity_id") @ExcludeMissing fun _entityId() = entityId
/** The account identifier. */
@JsonProperty("id") @ExcludeMissing fun _id() = id
/**
* The idempotency key you chose for this object. This value is unique across Increase and is
* used to ensure that a request is only processed once. Learn more about
* [idempotency](https://increase.com/documentation/idempotency-keys).
*/
@JsonProperty("idempotency_key") @ExcludeMissing fun _idempotencyKey() = idempotencyKey
/** The name you choose for the account. */
@JsonProperty("name") @ExcludeMissing fun _name() = name
/**
* A constant representing the object's type. For this resource it will always be
* `bookkeeping_account`.
*/
@JsonProperty("type") @ExcludeMissing fun _type() = type
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun validate(): BookkeepingAccount = apply {
if (!validated) {
accountId()
complianceCategory()
entityId()
id()
idempotencyKey()
name()
type()
validated = true
}
}
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
class Builder {
private var accountId: JsonField = JsonMissing.of()
private var complianceCategory: JsonField = JsonMissing.of()
private var entityId: JsonField = JsonMissing.of()
private var id: JsonField = JsonMissing.of()
private var idempotencyKey: JsonField = JsonMissing.of()
private var name: JsonField = JsonMissing.of()
private var type: JsonField = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(bookkeepingAccount: BookkeepingAccount) = apply {
this.accountId = bookkeepingAccount.accountId
this.complianceCategory = bookkeepingAccount.complianceCategory
this.entityId = bookkeepingAccount.entityId
this.id = bookkeepingAccount.id
this.idempotencyKey = bookkeepingAccount.idempotencyKey
this.name = bookkeepingAccount.name
this.type = bookkeepingAccount.type
additionalProperties(bookkeepingAccount.additionalProperties)
}
/** The API Account associated with this bookkeeping account. */
fun accountId(accountId: String) = accountId(JsonField.of(accountId))
/** The API Account associated with this bookkeeping account. */
@JsonProperty("account_id")
@ExcludeMissing
fun accountId(accountId: JsonField) = apply { this.accountId = accountId }
/** The compliance category of the account. */
fun complianceCategory(complianceCategory: ComplianceCategory) =
complianceCategory(JsonField.of(complianceCategory))
/** The compliance category of the account. */
@JsonProperty("compliance_category")
@ExcludeMissing
fun complianceCategory(complianceCategory: JsonField) = apply {
this.complianceCategory = complianceCategory
}
/** The Entity associated with this bookkeeping account. */
fun entityId(entityId: String) = entityId(JsonField.of(entityId))
/** The Entity associated with this bookkeeping account. */
@JsonProperty("entity_id")
@ExcludeMissing
fun entityId(entityId: JsonField) = apply { this.entityId = entityId }
/** The account identifier. */
fun id(id: String) = id(JsonField.of(id))
/** The account identifier. */
@JsonProperty("id") @ExcludeMissing fun id(id: JsonField) = apply { this.id = id }
/**
* The idempotency key you chose for this object. This value is unique across Increase and
* is used to ensure that a request is only processed once. Learn more about
* [idempotency](https://increase.com/documentation/idempotency-keys).
*/
fun idempotencyKey(idempotencyKey: String) = idempotencyKey(JsonField.of(idempotencyKey))
/**
* The idempotency key you chose for this object. This value is unique across Increase and
* is used to ensure that a request is only processed once. Learn more about
* [idempotency](https://increase.com/documentation/idempotency-keys).
*/
@JsonProperty("idempotency_key")
@ExcludeMissing
fun idempotencyKey(idempotencyKey: JsonField) = apply {
this.idempotencyKey = idempotencyKey
}
/** The name you choose for the account. */
fun name(name: String) = name(JsonField.of(name))
/** The name you choose for the account. */
@JsonProperty("name")
@ExcludeMissing
fun name(name: JsonField) = apply { this.name = name }
/**
* A constant representing the object's type. For this resource it will always be
* `bookkeeping_account`.
*/
fun type(type: Type) = type(JsonField.of(type))
/**
* A constant representing the object's type. For this resource it will always be
* `bookkeeping_account`.
*/
@JsonProperty("type")
@ExcludeMissing
fun type(type: JsonField) = apply { this.type = type }
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(): BookkeepingAccount =
BookkeepingAccount(
accountId,
complianceCategory,
entityId,
id,
idempotencyKey,
name,
type,
additionalProperties.toImmutable(),
)
}
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 /* spotless:off */ other is ComplianceCategory && this.value == other.value /* spotless:on */
}
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()
}
class Type
@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 Type && this.value == other.value /* spotless:on */
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val BOOKKEEPING_ACCOUNT = Type(JsonField.of("bookkeeping_account"))
fun of(value: String) = Type(JsonField.of(value))
}
enum class Known {
BOOKKEEPING_ACCOUNT,
}
enum class Value {
BOOKKEEPING_ACCOUNT,
_UNKNOWN,
}
fun value(): Value =
when (this) {
BOOKKEEPING_ACCOUNT -> Value.BOOKKEEPING_ACCOUNT
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
BOOKKEEPING_ACCOUNT -> Known.BOOKKEEPING_ACCOUNT
else -> throw IncreaseInvalidDataException("Unknown Type: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is BookkeepingAccount && this.accountId == other.accountId && this.complianceCategory == other.complianceCategory && this.entityId == other.entityId && this.id == other.id && this.idempotencyKey == other.idempotencyKey && this.name == other.name && this.type == other.type && this.additionalProperties == other.additionalProperties /* spotless:on */
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode = /* spotless:off */ Objects.hash(accountId, complianceCategory, entityId, id, idempotencyKey, name, type, additionalProperties) /* spotless:on */
}
return hashCode
}
override fun toString() =
"BookkeepingAccount{accountId=$accountId, complianceCategory=$complianceCategory, entityId=$entityId, id=$id, idempotencyKey=$idempotencyKey, name=$name, type=$type, additionalProperties=$additionalProperties}"
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy