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

com.lithic.api.models.PaymentSimulateReceiptParams.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.72.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.JsonCreator
import com.fasterxml.jackson.annotation.JsonProperty
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.lithic.api.core.Enum
import com.lithic.api.core.ExcludeMissing
import com.lithic.api.core.JsonField
import com.lithic.api.core.JsonValue
import com.lithic.api.core.NoAutoDetect
import com.lithic.api.core.toUnmodifiable
import com.lithic.api.errors.LithicInvalidDataException
import com.lithic.api.models.*
import java.util.Objects

class PaymentSimulateReceiptParams
constructor(
    private val token: String,
    private val amount: Long,
    private val financialAccountToken: String,
    private val receiptType: ReceiptType,
    private val memo: String?,
    private val additionalQueryParams: Map>,
    private val additionalHeaders: Map>,
    private val additionalBodyProperties: Map,
) {

    fun token(): String = token

    fun amount(): Long = amount

    fun financialAccountToken(): String = financialAccountToken

    fun receiptType(): ReceiptType = receiptType

    fun memo(): String? = memo

    internal fun getBody(): PaymentSimulateReceiptBody {
        return PaymentSimulateReceiptBody(
            token,
            amount,
            financialAccountToken,
            receiptType,
            memo,
            additionalBodyProperties,
        )
    }

    internal fun getQueryParams(): Map> = additionalQueryParams

    internal fun getHeaders(): Map> = additionalHeaders

    @JsonDeserialize(builder = PaymentSimulateReceiptBody.Builder::class)
    @NoAutoDetect
    class PaymentSimulateReceiptBody
    internal constructor(
        private val token: String?,
        private val amount: Long?,
        private val financialAccountToken: String?,
        private val receiptType: ReceiptType?,
        private val memo: String?,
        private val additionalProperties: Map,
    ) {

        private var hashCode: Int = 0

        /** Payment token */
        @JsonProperty("token") fun token(): String? = token

        /** Amount */
        @JsonProperty("amount") fun amount(): Long? = amount

        /** Financial Account Token */
        @JsonProperty("financial_account_token")
        fun financialAccountToken(): String? = financialAccountToken

        /** Receipt Type */
        @JsonProperty("receipt_type") fun receiptType(): ReceiptType? = receiptType

        /** Memo */
        @JsonProperty("memo") fun memo(): String? = memo

        @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 PaymentSimulateReceiptBody &&
                this.token == other.token &&
                this.amount == other.amount &&
                this.financialAccountToken == other.financialAccountToken &&
                this.receiptType == other.receiptType &&
                this.memo == other.memo &&
                this.additionalProperties == other.additionalProperties
        }

        override fun hashCode(): Int {
            if (hashCode == 0) {
                hashCode =
                    Objects.hash(
                        token,
                        amount,
                        financialAccountToken,
                        receiptType,
                        memo,
                        additionalProperties,
                    )
            }
            return hashCode
        }

        override fun toString() =
            "PaymentSimulateReceiptBody{token=$token, amount=$amount, financialAccountToken=$financialAccountToken, receiptType=$receiptType, memo=$memo, additionalProperties=$additionalProperties}"

        companion object {

            fun builder() = Builder()
        }

        class Builder {

            private var token: String? = null
            private var amount: Long? = null
            private var financialAccountToken: String? = null
            private var receiptType: ReceiptType? = null
            private var memo: String? = null
            private var additionalProperties: MutableMap = mutableMapOf()

            internal fun from(paymentSimulateReceiptBody: PaymentSimulateReceiptBody) = apply {
                this.token = paymentSimulateReceiptBody.token
                this.amount = paymentSimulateReceiptBody.amount
                this.financialAccountToken = paymentSimulateReceiptBody.financialAccountToken
                this.receiptType = paymentSimulateReceiptBody.receiptType
                this.memo = paymentSimulateReceiptBody.memo
                additionalProperties(paymentSimulateReceiptBody.additionalProperties)
            }

            /** Payment token */
            @JsonProperty("token") fun token(token: String) = apply { this.token = token }

            /** Amount */
            @JsonProperty("amount") fun amount(amount: Long) = apply { this.amount = amount }

            /** Financial Account Token */
            @JsonProperty("financial_account_token")
            fun financialAccountToken(financialAccountToken: String) = apply {
                this.financialAccountToken = financialAccountToken
            }

            /** Receipt Type */
            @JsonProperty("receipt_type")
            fun receiptType(receiptType: ReceiptType) = apply { this.receiptType = receiptType }

            /** Memo */
            @JsonProperty("memo") fun memo(memo: String) = apply { this.memo = memo }

            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(): PaymentSimulateReceiptBody =
                PaymentSimulateReceiptBody(
                    checkNotNull(token) { "`token` is required but was not set" },
                    checkNotNull(amount) { "`amount` is required but was not set" },
                    checkNotNull(financialAccountToken) {
                        "`financialAccountToken` is required but was not set"
                    },
                    checkNotNull(receiptType) { "`receiptType` is required but was not set" },
                    memo,
                    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 PaymentSimulateReceiptParams &&
            this.token == other.token &&
            this.amount == other.amount &&
            this.financialAccountToken == other.financialAccountToken &&
            this.receiptType == other.receiptType &&
            this.memo == other.memo &&
            this.additionalQueryParams == other.additionalQueryParams &&
            this.additionalHeaders == other.additionalHeaders &&
            this.additionalBodyProperties == other.additionalBodyProperties
    }

    override fun hashCode(): Int {
        return Objects.hash(
            token,
            amount,
            financialAccountToken,
            receiptType,
            memo,
            additionalQueryParams,
            additionalHeaders,
            additionalBodyProperties,
        )
    }

    override fun toString() =
        "PaymentSimulateReceiptParams{token=$token, amount=$amount, financialAccountToken=$financialAccountToken, receiptType=$receiptType, memo=$memo, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"

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

    companion object {

        fun builder() = Builder()
    }

    @NoAutoDetect
    class Builder {

        private var token: String? = null
        private var amount: Long? = null
        private var financialAccountToken: String? = null
        private var receiptType: ReceiptType? = null
        private var memo: String? = null
        private var additionalQueryParams: MutableMap> = mutableMapOf()
        private var additionalHeaders: MutableMap> = mutableMapOf()
        private var additionalBodyProperties: MutableMap = mutableMapOf()

        internal fun from(paymentSimulateReceiptParams: PaymentSimulateReceiptParams) = apply {
            this.token = paymentSimulateReceiptParams.token
            this.amount = paymentSimulateReceiptParams.amount
            this.financialAccountToken = paymentSimulateReceiptParams.financialAccountToken
            this.receiptType = paymentSimulateReceiptParams.receiptType
            this.memo = paymentSimulateReceiptParams.memo
            additionalQueryParams(paymentSimulateReceiptParams.additionalQueryParams)
            additionalHeaders(paymentSimulateReceiptParams.additionalHeaders)
            additionalBodyProperties(paymentSimulateReceiptParams.additionalBodyProperties)
        }

        /** Payment token */
        fun token(token: String) = apply { this.token = token }

        /** Amount */
        fun amount(amount: Long) = apply { this.amount = amount }

        /** Financial Account Token */
        fun financialAccountToken(financialAccountToken: String) = apply {
            this.financialAccountToken = financialAccountToken
        }

        /** Receipt Type */
        fun receiptType(receiptType: ReceiptType) = apply { this.receiptType = receiptType }

        /** Memo */
        fun memo(memo: String) = apply { this.memo = memo }

        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(): PaymentSimulateReceiptParams =
            PaymentSimulateReceiptParams(
                checkNotNull(token) { "`token` is required but was not set" },
                checkNotNull(amount) { "`amount` is required but was not set" },
                checkNotNull(financialAccountToken) {
                    "`financialAccountToken` is required but was not set"
                },
                checkNotNull(receiptType) { "`receiptType` is required but was not set" },
                memo,
                additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
                additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
                additionalBodyProperties.toUnmodifiable(),
            )
    }

    class ReceiptType
    @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 ReceiptType && this.value == other.value
        }

        override fun hashCode() = value.hashCode()

        override fun toString() = value.toString()

        companion object {

            val RECEIPT_CREDIT = ReceiptType(JsonField.of("RECEIPT_CREDIT"))

            val RECEIPT_DEBIT = ReceiptType(JsonField.of("RECEIPT_DEBIT"))

            fun of(value: String) = ReceiptType(JsonField.of(value))
        }

        enum class Known {
            RECEIPT_CREDIT,
            RECEIPT_DEBIT,
        }

        enum class Value {
            RECEIPT_CREDIT,
            RECEIPT_DEBIT,
            _UNKNOWN,
        }

        fun value(): Value =
            when (this) {
                RECEIPT_CREDIT -> Value.RECEIPT_CREDIT
                RECEIPT_DEBIT -> Value.RECEIPT_DEBIT
                else -> Value._UNKNOWN
            }

        fun known(): Known =
            when (this) {
                RECEIPT_CREDIT -> Known.RECEIPT_CREDIT
                RECEIPT_DEBIT -> Known.RECEIPT_DEBIT
                else -> throw LithicInvalidDataException("Unknown ReceiptType: $value")
            }

        fun asString(): String = _value().asStringOrThrow()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy