All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lithic.api.models.FinancialAccountCreditConfigurationUpdateParams.kt Maven / Gradle / Ivy

Go to download

The Lithic Developer API is designed to provide a predictable programmatic interface for accessing your Lithic account through an API and transaction webhooks. Note that your API key is a secret and should be treated as such. Don't share it with anyone, including us. We will never ask you for it.

There is a newer version: 0.71.0
Show newest version
// 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
import java.util.Optional

class FinancialAccountCreditConfigurationUpdateParams
constructor(
    private val financialAccountToken: String,
    private val creditLimit: Long?,
    private val creditProductToken: String?,
    private val externalBankAccountToken: String?,
    private val tier: String?,
    private val additionalQueryParams: Map>,
    private val additionalHeaders: Map>,
    private val additionalBodyProperties: Map,
) {

    fun financialAccountToken(): String = financialAccountToken

    fun creditLimit(): Optional = Optional.ofNullable(creditLimit)

    fun creditProductToken(): Optional = Optional.ofNullable(creditProductToken)

    fun externalBankAccountToken(): Optional = Optional.ofNullable(externalBankAccountToken)

    fun tier(): Optional = Optional.ofNullable(tier)

    @JvmSynthetic
    internal fun getBody(): FinancialAccountCreditConfigurationUpdateBody {
        return FinancialAccountCreditConfigurationUpdateBody(
            creditLimit,
            creditProductToken,
            externalBankAccountToken,
            tier,
            additionalBodyProperties,
        )
    }

    @JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams

    @JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders

    fun getPathParam(index: Int): String {
        return when (index) {
            0 -> financialAccountToken
            else -> ""
        }
    }

    @JsonDeserialize(builder = FinancialAccountCreditConfigurationUpdateBody.Builder::class)
    @NoAutoDetect
    class FinancialAccountCreditConfigurationUpdateBody
    internal constructor(
        private val creditLimit: Long?,
        private val creditProductToken: String?,
        private val externalBankAccountToken: String?,
        private val tier: String?,
        private val additionalProperties: Map,
    ) {

        @JsonProperty("credit_limit") fun creditLimit(): Long? = creditLimit

        /** Globally unique identifier for the credit product */
        @JsonProperty("credit_product_token") fun creditProductToken(): String? = creditProductToken

        @JsonProperty("external_bank_account_token")
        fun externalBankAccountToken(): String? = externalBankAccountToken

        /** Tier to assign to a financial account */
        @JsonProperty("tier") fun tier(): String? = tier

        @JsonAnyGetter
        @ExcludeMissing
        fun _additionalProperties(): Map = additionalProperties

        fun toBuilder() = Builder().from(this)

        companion object {

            @JvmStatic fun builder() = Builder()
        }

        class Builder {

            private var creditLimit: Long? = null
            private var creditProductToken: String? = null
            private var externalBankAccountToken: String? = null
            private var tier: String? = null
            private var additionalProperties: MutableMap = mutableMapOf()

            @JvmSynthetic
            internal fun from(
                financialAccountCreditConfigurationUpdateBody:
                    FinancialAccountCreditConfigurationUpdateBody
            ) = apply {
                this.creditLimit = financialAccountCreditConfigurationUpdateBody.creditLimit
                this.creditProductToken =
                    financialAccountCreditConfigurationUpdateBody.creditProductToken
                this.externalBankAccountToken =
                    financialAccountCreditConfigurationUpdateBody.externalBankAccountToken
                this.tier = financialAccountCreditConfigurationUpdateBody.tier
                additionalProperties(
                    financialAccountCreditConfigurationUpdateBody.additionalProperties
                )
            }

            @JsonProperty("credit_limit")
            fun creditLimit(creditLimit: Long) = apply { this.creditLimit = creditLimit }

            /** Globally unique identifier for the credit product */
            @JsonProperty("credit_product_token")
            fun creditProductToken(creditProductToken: String) = apply {
                this.creditProductToken = creditProductToken
            }

            @JsonProperty("external_bank_account_token")
            fun externalBankAccountToken(externalBankAccountToken: String) = apply {
                this.externalBankAccountToken = externalBankAccountToken
            }

            /** Tier to assign to a financial account */
            @JsonProperty("tier") fun tier(tier: String) = apply { this.tier = tier }

            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(): FinancialAccountCreditConfigurationUpdateBody =
                FinancialAccountCreditConfigurationUpdateBody(
                    creditLimit,
                    creditProductToken,
                    externalBankAccountToken,
                    tier,
                    additionalProperties.toUnmodifiable(),
                )
        }

        override fun equals(other: Any?): Boolean {
            if (this === other) {
                return true
            }

            return other is FinancialAccountCreditConfigurationUpdateBody &&
                this.creditLimit == other.creditLimit &&
                this.creditProductToken == other.creditProductToken &&
                this.externalBankAccountToken == other.externalBankAccountToken &&
                this.tier == other.tier &&
                this.additionalProperties == other.additionalProperties
        }

        private var hashCode: Int = 0

        override fun hashCode(): Int {
            if (hashCode == 0) {
                hashCode =
                    Objects.hash(
                        creditLimit,
                        creditProductToken,
                        externalBankAccountToken,
                        tier,
                        additionalProperties,
                    )
            }
            return hashCode
        }

        override fun toString() =
            "FinancialAccountCreditConfigurationUpdateBody{creditLimit=$creditLimit, creditProductToken=$creditProductToken, externalBankAccountToken=$externalBankAccountToken, tier=$tier, additionalProperties=$additionalProperties}"
    }

    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 FinancialAccountCreditConfigurationUpdateParams &&
            this.financialAccountToken == other.financialAccountToken &&
            this.creditLimit == other.creditLimit &&
            this.creditProductToken == other.creditProductToken &&
            this.externalBankAccountToken == other.externalBankAccountToken &&
            this.tier == other.tier &&
            this.additionalQueryParams == other.additionalQueryParams &&
            this.additionalHeaders == other.additionalHeaders &&
            this.additionalBodyProperties == other.additionalBodyProperties
    }

    override fun hashCode(): Int {
        return Objects.hash(
            financialAccountToken,
            creditLimit,
            creditProductToken,
            externalBankAccountToken,
            tier,
            additionalQueryParams,
            additionalHeaders,
            additionalBodyProperties,
        )
    }

    override fun toString() =
        "FinancialAccountCreditConfigurationUpdateParams{financialAccountToken=$financialAccountToken, creditLimit=$creditLimit, creditProductToken=$creditProductToken, externalBankAccountToken=$externalBankAccountToken, tier=$tier, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"

    fun toBuilder() = Builder().from(this)

    companion object {

        @JvmStatic fun builder() = Builder()
    }

    @NoAutoDetect
    class Builder {

        private var financialAccountToken: String? = null
        private var creditLimit: Long? = null
        private var creditProductToken: String? = null
        private var externalBankAccountToken: String? = null
        private var tier: String? = null
        private var additionalQueryParams: MutableMap> = mutableMapOf()
        private var additionalHeaders: MutableMap> = mutableMapOf()
        private var additionalBodyProperties: MutableMap = mutableMapOf()

        @JvmSynthetic
        internal fun from(
            financialAccountCreditConfigurationUpdateParams:
                FinancialAccountCreditConfigurationUpdateParams
        ) = apply {
            this.financialAccountToken =
                financialAccountCreditConfigurationUpdateParams.financialAccountToken
            this.creditLimit = financialAccountCreditConfigurationUpdateParams.creditLimit
            this.creditProductToken =
                financialAccountCreditConfigurationUpdateParams.creditProductToken
            this.externalBankAccountToken =
                financialAccountCreditConfigurationUpdateParams.externalBankAccountToken
            this.tier = financialAccountCreditConfigurationUpdateParams.tier
            additionalQueryParams(
                financialAccountCreditConfigurationUpdateParams.additionalQueryParams
            )
            additionalHeaders(financialAccountCreditConfigurationUpdateParams.additionalHeaders)
            additionalBodyProperties(
                financialAccountCreditConfigurationUpdateParams.additionalBodyProperties
            )
        }

        fun financialAccountToken(financialAccountToken: String) = apply {
            this.financialAccountToken = financialAccountToken
        }

        fun creditLimit(creditLimit: Long) = apply { this.creditLimit = creditLimit }

        /** Globally unique identifier for the credit product */
        fun creditProductToken(creditProductToken: String) = apply {
            this.creditProductToken = creditProductToken
        }

        fun externalBankAccountToken(externalBankAccountToken: String) = apply {
            this.externalBankAccountToken = externalBankAccountToken
        }

        /** Tier to assign to a financial account */
        fun tier(tier: String) = apply { this.tier = tier }

        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(): FinancialAccountCreditConfigurationUpdateParams =
            FinancialAccountCreditConfigurationUpdateParams(
                checkNotNull(financialAccountToken) {
                    "`financialAccountToken` is required but was not set"
                },
                creditLimit,
                creditProductToken,
                externalBankAccountToken,
                tier,
                additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
                additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
                additionalBodyProperties.toUnmodifiable(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy