com.lithic.api.models.ExternalPaymentReleaseParams.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lithic-java-core Show documentation
Show all versions of lithic-java-core Show documentation
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.
// 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.time.LocalDate
import java.util.Objects
import java.util.Optional
class ExternalPaymentReleaseParams
constructor(
private val externalPaymentToken: String,
private val effectiveDate: LocalDate,
private val memo: String?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun externalPaymentToken(): String = externalPaymentToken
fun effectiveDate(): LocalDate = effectiveDate
fun memo(): Optional = Optional.ofNullable(memo)
@JvmSynthetic
internal fun getBody(): ExternalPaymentReleaseBody {
return ExternalPaymentReleaseBody(
effectiveDate,
memo,
additionalBodyProperties,
)
}
@JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams
@JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
fun getPathParam(index: Int): String {
return when (index) {
0 -> externalPaymentToken
else -> ""
}
}
@JsonDeserialize(builder = ExternalPaymentReleaseBody.Builder::class)
@NoAutoDetect
class ExternalPaymentReleaseBody
internal constructor(
private val effectiveDate: LocalDate?,
private val memo: String?,
private val additionalProperties: Map,
) {
@JsonProperty("effective_date") fun effectiveDate(): LocalDate? = effectiveDate
@JsonProperty("memo") fun memo(): String? = memo
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
class Builder {
private var effectiveDate: LocalDate? = null
private var memo: String? = null
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(externalPaymentReleaseBody: ExternalPaymentReleaseBody) = apply {
this.effectiveDate = externalPaymentReleaseBody.effectiveDate
this.memo = externalPaymentReleaseBody.memo
additionalProperties(externalPaymentReleaseBody.additionalProperties)
}
@JsonProperty("effective_date")
fun effectiveDate(effectiveDate: LocalDate) = apply {
this.effectiveDate = effectiveDate
}
@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(): ExternalPaymentReleaseBody =
ExternalPaymentReleaseBody(
checkNotNull(effectiveDate) { "`effectiveDate` is required but was not set" },
memo,
additionalProperties.toUnmodifiable(),
)
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is ExternalPaymentReleaseBody &&
this.effectiveDate == other.effectiveDate &&
this.memo == other.memo &&
this.additionalProperties == other.additionalProperties
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
effectiveDate,
memo,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"ExternalPaymentReleaseBody{effectiveDate=$effectiveDate, memo=$memo, 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 ExternalPaymentReleaseParams &&
this.externalPaymentToken == other.externalPaymentToken &&
this.effectiveDate == other.effectiveDate &&
this.memo == other.memo &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
externalPaymentToken,
effectiveDate,
memo,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"ExternalPaymentReleaseParams{externalPaymentToken=$externalPaymentToken, effectiveDate=$effectiveDate, memo=$memo, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var externalPaymentToken: String? = null
private var effectiveDate: LocalDate? = null
private var memo: String? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(externalPaymentReleaseParams: ExternalPaymentReleaseParams) = apply {
this.externalPaymentToken = externalPaymentReleaseParams.externalPaymentToken
this.effectiveDate = externalPaymentReleaseParams.effectiveDate
this.memo = externalPaymentReleaseParams.memo
additionalQueryParams(externalPaymentReleaseParams.additionalQueryParams)
additionalHeaders(externalPaymentReleaseParams.additionalHeaders)
additionalBodyProperties(externalPaymentReleaseParams.additionalBodyProperties)
}
fun externalPaymentToken(externalPaymentToken: String) = apply {
this.externalPaymentToken = externalPaymentToken
}
fun effectiveDate(effectiveDate: LocalDate) = apply { this.effectiveDate = effectiveDate }
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(): ExternalPaymentReleaseParams =
ExternalPaymentReleaseParams(
checkNotNull(externalPaymentToken) {
"`externalPaymentToken` is required but was not set"
},
checkNotNull(effectiveDate) { "`effectiveDate` is required but was not set" },
memo,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
}