com.lithic.api.models.CardEmbedParams.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.lithic.api.core.NoAutoDetect
import com.lithic.api.core.toUnmodifiable
import com.lithic.api.models.*
import java.util.Objects
class CardEmbedParams
constructor(
private val embedRequest: String,
private val hmac: String,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
) {
fun embedRequest(): String = embedRequest
fun hmac(): String = hmac
@JvmSynthetic
internal fun getQueryParams(): Map> {
val params = mutableMapOf>()
this.embedRequest.let { params.put("embed_request", listOf(it.toString())) }
this.hmac.let { params.put("hmac", listOf(it.toString())) }
params.putAll(additionalQueryParams)
return params.toUnmodifiable()
}
@JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
fun _additionalQueryParams(): Map> = additionalQueryParams
fun _additionalHeaders(): Map> = additionalHeaders
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is CardEmbedParams &&
this.embedRequest == other.embedRequest &&
this.hmac == other.hmac &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders
}
override fun hashCode(): Int {
return Objects.hash(
embedRequest,
hmac,
additionalQueryParams,
additionalHeaders,
)
}
override fun toString() =
"CardEmbedParams{embedRequest=$embedRequest, hmac=$hmac, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders}"
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var embedRequest: String? = null
private var hmac: String? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
@JvmSynthetic
internal fun from(cardEmbedParams: CardEmbedParams) = apply {
this.embedRequest = cardEmbedParams.embedRequest
this.hmac = cardEmbedParams.hmac
additionalQueryParams(cardEmbedParams.additionalQueryParams)
additionalHeaders(cardEmbedParams.additionalHeaders)
}
/** A base64 encoded JSON string of an EmbedRequest to specify which card to load. */
fun embedRequest(embedRequest: String) = apply { this.embedRequest = embedRequest }
/** SHA256 HMAC of the embed_request JSON string with base64 digest. */
fun hmac(hmac: String) = apply { this.hmac = hmac }
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 build(): CardEmbedParams =
CardEmbedParams(
checkNotNull(embedRequest) { "`embedRequest` is required but was not set" },
checkNotNull(hmac) { "`hmac` is required but was not set" },
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
)
}
}