
com.lithic.api.models.AccountCreditConfigurationUpdateParams.kt Maven / Gradle / Ivy
// File generated from our OpenAPI spec by Stainless.
package com.lithic.api.models
import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonAnySetter
import com.fasterxml.jackson.annotation.JsonProperty
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.lithic.api.core.ExcludeMissing
import com.lithic.api.core.JsonValue
import com.lithic.api.core.NoAutoDetect
import com.lithic.api.core.toUnmodifiable
import com.lithic.api.models.*
import java.util.Objects
class AccountCreditConfigurationUpdateParams
constructor(
private val accountToken: String,
private val billingPeriod: Long?,
private val creditLimit: Long?,
private val externalBankAccountToken: String?,
private val paymentPeriod: Long?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun accountToken(): String = accountToken
fun billingPeriod(): Long? = billingPeriod
fun creditLimit(): Long? = creditLimit
fun externalBankAccountToken(): String? = externalBankAccountToken
fun paymentPeriod(): Long? = paymentPeriod
internal fun getBody(): AccountCreditConfigurationUpdateBody {
return AccountCreditConfigurationUpdateBody(
billingPeriod,
creditLimit,
externalBankAccountToken,
paymentPeriod,
additionalBodyProperties,
)
}
internal fun getQueryParams(): Map> = additionalQueryParams
internal fun getHeaders(): Map> = additionalHeaders
fun getPathParam(index: Int): String {
return when (index) {
0 -> accountToken
else -> ""
}
}
@JsonDeserialize(builder = AccountCreditConfigurationUpdateBody.Builder::class)
@NoAutoDetect
class AccountCreditConfigurationUpdateBody
internal constructor(
private val billingPeriod: Long?,
private val creditLimit: Long?,
private val externalBankAccountToken: String?,
private val paymentPeriod: Long?,
private val additionalProperties: Map,
) {
private var hashCode: Int = 0
/** Number of days within the billing period */
@JsonProperty("billing_period") fun billingPeriod(): Long? = billingPeriod
/** Credit limit extended to the Business Account */
@JsonProperty("credit_limit") fun creditLimit(): Long? = creditLimit
/** The external bank account token to use for auto-collections */
@JsonProperty("external_bank_account_token")
fun externalBankAccountToken(): String? = externalBankAccountToken
/** Number of days after the billing period ends that a payment is required */
@JsonProperty("payment_period") fun paymentPeriod(): Long? = paymentPeriod
@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 AccountCreditConfigurationUpdateBody &&
this.billingPeriod == other.billingPeriod &&
this.creditLimit == other.creditLimit &&
this.externalBankAccountToken == other.externalBankAccountToken &&
this.paymentPeriod == other.paymentPeriod &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
billingPeriod,
creditLimit,
externalBankAccountToken,
paymentPeriod,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"AccountCreditConfigurationUpdateBody{billingPeriod=$billingPeriod, creditLimit=$creditLimit, externalBankAccountToken=$externalBankAccountToken, paymentPeriod=$paymentPeriod, additionalProperties=$additionalProperties}"
companion object {
fun builder() = Builder()
}
class Builder {
private var billingPeriod: Long? = null
private var creditLimit: Long? = null
private var externalBankAccountToken: String? = null
private var paymentPeriod: Long? = null
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(
accountCreditConfigurationUpdateBody: AccountCreditConfigurationUpdateBody
) = apply {
this.billingPeriod = accountCreditConfigurationUpdateBody.billingPeriod
this.creditLimit = accountCreditConfigurationUpdateBody.creditLimit
this.externalBankAccountToken =
accountCreditConfigurationUpdateBody.externalBankAccountToken
this.paymentPeriod = accountCreditConfigurationUpdateBody.paymentPeriod
additionalProperties(accountCreditConfigurationUpdateBody.additionalProperties)
}
/** Number of days within the billing period */
@JsonProperty("billing_period")
fun billingPeriod(billingPeriod: Long) = apply { this.billingPeriod = billingPeriod }
/** Credit limit extended to the Business Account */
@JsonProperty("credit_limit")
fun creditLimit(creditLimit: Long) = apply { this.creditLimit = creditLimit }
/** The external bank account token to use for auto-collections */
@JsonProperty("external_bank_account_token")
fun externalBankAccountToken(externalBankAccountToken: String) = apply {
this.externalBankAccountToken = externalBankAccountToken
}
/** Number of days after the billing period ends that a payment is required */
@JsonProperty("payment_period")
fun paymentPeriod(paymentPeriod: Long) = apply { this.paymentPeriod = paymentPeriod }
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(): AccountCreditConfigurationUpdateBody =
AccountCreditConfigurationUpdateBody(
billingPeriod,
creditLimit,
externalBankAccountToken,
paymentPeriod,
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 AccountCreditConfigurationUpdateParams &&
this.accountToken == other.accountToken &&
this.billingPeriod == other.billingPeriod &&
this.creditLimit == other.creditLimit &&
this.externalBankAccountToken == other.externalBankAccountToken &&
this.paymentPeriod == other.paymentPeriod &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
accountToken,
billingPeriod,
creditLimit,
externalBankAccountToken,
paymentPeriod,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"AccountCreditConfigurationUpdateParams{accountToken=$accountToken, billingPeriod=$billingPeriod, creditLimit=$creditLimit, externalBankAccountToken=$externalBankAccountToken, paymentPeriod=$paymentPeriod, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var accountToken: String? = null
private var billingPeriod: Long? = null
private var creditLimit: Long? = null
private var externalBankAccountToken: String? = null
private var paymentPeriod: Long? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
internal fun from(
accountCreditConfigurationUpdateParams: AccountCreditConfigurationUpdateParams
) = apply {
this.accountToken = accountCreditConfigurationUpdateParams.accountToken
this.billingPeriod = accountCreditConfigurationUpdateParams.billingPeriod
this.creditLimit = accountCreditConfigurationUpdateParams.creditLimit
this.externalBankAccountToken =
accountCreditConfigurationUpdateParams.externalBankAccountToken
this.paymentPeriod = accountCreditConfigurationUpdateParams.paymentPeriod
additionalQueryParams(accountCreditConfigurationUpdateParams.additionalQueryParams)
additionalHeaders(accountCreditConfigurationUpdateParams.additionalHeaders)
additionalBodyProperties(
accountCreditConfigurationUpdateParams.additionalBodyProperties
)
}
fun accountToken(accountToken: String) = apply { this.accountToken = accountToken }
/** Number of days within the billing period */
fun billingPeriod(billingPeriod: Long) = apply { this.billingPeriod = billingPeriod }
/** Credit limit extended to the Business Account */
fun creditLimit(creditLimit: Long) = apply { this.creditLimit = creditLimit }
/** The external bank account token to use for auto-collections */
fun externalBankAccountToken(externalBankAccountToken: String) = apply {
this.externalBankAccountToken = externalBankAccountToken
}
/** Number of days after the billing period ends that a payment is required */
fun paymentPeriod(paymentPeriod: Long) = apply { this.paymentPeriod = paymentPeriod }
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(): AccountCreditConfigurationUpdateParams =
AccountCreditConfigurationUpdateParams(
checkNotNull(accountToken) { "`accountToken` is required but was not set" },
billingPeriod,
creditLimit,
externalBankAccountToken,
paymentPeriod,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy