com.lithic.api.models.AuthRuleCreateParams.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lithic-kotlin-core Show documentation
Show all versions of lithic-kotlin-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.util.Objects
class AuthRuleCreateParams
constructor(
private val accountTokens: List?,
private val allowedCountries: List?,
private val allowedMcc: List?,
private val blockedCountries: List?,
private val blockedMcc: List?,
private val cardTokens: List?,
private val programLevel: Boolean?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun accountTokens(): List? = accountTokens
fun allowedCountries(): List? = allowedCountries
fun allowedMcc(): List? = allowedMcc
fun blockedCountries(): List? = blockedCountries
fun blockedMcc(): List? = blockedMcc
fun cardTokens(): List? = cardTokens
fun programLevel(): Boolean? = programLevel
internal fun getBody(): AuthRuleCreateBody {
return AuthRuleCreateBody(
accountTokens,
allowedCountries,
allowedMcc,
blockedCountries,
blockedMcc,
cardTokens,
programLevel,
additionalBodyProperties,
)
}
internal fun getQueryParams(): Map> = additionalQueryParams
internal fun getHeaders(): Map> = additionalHeaders
@JsonDeserialize(builder = AuthRuleCreateBody.Builder::class)
@NoAutoDetect
class AuthRuleCreateBody
internal constructor(
private val accountTokens: List?,
private val allowedCountries: List?,
private val allowedMcc: List?,
private val blockedCountries: List?,
private val blockedMcc: List?,
private val cardTokens: List?,
private val programLevel: Boolean?,
private val additionalProperties: Map,
) {
private var hashCode: Int = 0
/**
* Array of account_token(s) identifying the accounts that the Auth Rule applies to. Note
* that only this field or `card_tokens` can be provided for a given Auth Rule.
*/
@JsonProperty("account_tokens") fun accountTokens(): List? = accountTokens
/**
* Countries in which the Auth Rule permits transactions. Note that Lithic maintains a list
* of countries in which all transactions are blocked; "allowing" those countries in an Auth
* Rule does not override the Lithic-wide restrictions.
*/
@JsonProperty("allowed_countries") fun allowedCountries(): List? = allowedCountries
/** Merchant category codes for which the Auth Rule permits transactions. */
@JsonProperty("allowed_mcc") fun allowedMcc(): List? = allowedMcc
/** Countries in which the Auth Rule automatically declines transactions. */
@JsonProperty("blocked_countries") fun blockedCountries(): List? = blockedCountries
/** Merchant category codes for which the Auth Rule automatically declines transactions. */
@JsonProperty("blocked_mcc") fun blockedMcc(): List? = blockedMcc
/**
* Array of card_token(s) identifying the cards that the Auth Rule applies to. Note that
* only this field or `account_tokens` can be provided for a given Auth Rule.
*/
@JsonProperty("card_tokens") fun cardTokens(): List? = cardTokens
/** Boolean indicating whether the Auth Rule is applied at the program level. */
@JsonProperty("program_level") fun programLevel(): Boolean? = programLevel
@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 AuthRuleCreateBody &&
this.accountTokens == other.accountTokens &&
this.allowedCountries == other.allowedCountries &&
this.allowedMcc == other.allowedMcc &&
this.blockedCountries == other.blockedCountries &&
this.blockedMcc == other.blockedMcc &&
this.cardTokens == other.cardTokens &&
this.programLevel == other.programLevel &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
accountTokens,
allowedCountries,
allowedMcc,
blockedCountries,
blockedMcc,
cardTokens,
programLevel,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"AuthRuleCreateBody{accountTokens=$accountTokens, allowedCountries=$allowedCountries, allowedMcc=$allowedMcc, blockedCountries=$blockedCountries, blockedMcc=$blockedMcc, cardTokens=$cardTokens, programLevel=$programLevel, additionalProperties=$additionalProperties}"
companion object {
fun builder() = Builder()
}
class Builder {
private var accountTokens: List? = null
private var allowedCountries: List? = null
private var allowedMcc: List? = null
private var blockedCountries: List? = null
private var blockedMcc: List? = null
private var cardTokens: List? = null
private var programLevel: Boolean? = null
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(authRuleCreateBody: AuthRuleCreateBody) = apply {
this.accountTokens = authRuleCreateBody.accountTokens
this.allowedCountries = authRuleCreateBody.allowedCountries
this.allowedMcc = authRuleCreateBody.allowedMcc
this.blockedCountries = authRuleCreateBody.blockedCountries
this.blockedMcc = authRuleCreateBody.blockedMcc
this.cardTokens = authRuleCreateBody.cardTokens
this.programLevel = authRuleCreateBody.programLevel
additionalProperties(authRuleCreateBody.additionalProperties)
}
/**
* Array of account_token(s) identifying the accounts that the Auth Rule applies to.
* Note that only this field or `card_tokens` can be provided for a given Auth Rule.
*/
@JsonProperty("account_tokens")
fun accountTokens(accountTokens: List) = apply {
this.accountTokens = accountTokens
}
/**
* Countries in which the Auth Rule permits transactions. Note that Lithic maintains a
* list of countries in which all transactions are blocked; "allowing" those countries
* in an Auth Rule does not override the Lithic-wide restrictions.
*/
@JsonProperty("allowed_countries")
fun allowedCountries(allowedCountries: List) = apply {
this.allowedCountries = allowedCountries
}
/** Merchant category codes for which the Auth Rule permits transactions. */
@JsonProperty("allowed_mcc")
fun allowedMcc(allowedMcc: List) = apply { this.allowedMcc = allowedMcc }
/** Countries in which the Auth Rule automatically declines transactions. */
@JsonProperty("blocked_countries")
fun blockedCountries(blockedCountries: List) = apply {
this.blockedCountries = blockedCountries
}
/**
* Merchant category codes for which the Auth Rule automatically declines transactions.
*/
@JsonProperty("blocked_mcc")
fun blockedMcc(blockedMcc: List) = apply { this.blockedMcc = blockedMcc }
/**
* Array of card_token(s) identifying the cards that the Auth Rule applies to. Note that
* only this field or `account_tokens` can be provided for a given Auth Rule.
*/
@JsonProperty("card_tokens")
fun cardTokens(cardTokens: List) = apply { this.cardTokens = cardTokens }
/** Boolean indicating whether the Auth Rule is applied at the program level. */
@JsonProperty("program_level")
fun programLevel(programLevel: Boolean) = apply { this.programLevel = programLevel }
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(): AuthRuleCreateBody =
AuthRuleCreateBody(
accountTokens?.toUnmodifiable(),
allowedCountries?.toUnmodifiable(),
allowedMcc?.toUnmodifiable(),
blockedCountries?.toUnmodifiable(),
blockedMcc?.toUnmodifiable(),
cardTokens?.toUnmodifiable(),
programLevel,
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 AuthRuleCreateParams &&
this.accountTokens == other.accountTokens &&
this.allowedCountries == other.allowedCountries &&
this.allowedMcc == other.allowedMcc &&
this.blockedCountries == other.blockedCountries &&
this.blockedMcc == other.blockedMcc &&
this.cardTokens == other.cardTokens &&
this.programLevel == other.programLevel &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
accountTokens,
allowedCountries,
allowedMcc,
blockedCountries,
blockedMcc,
cardTokens,
programLevel,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"AuthRuleCreateParams{accountTokens=$accountTokens, allowedCountries=$allowedCountries, allowedMcc=$allowedMcc, blockedCountries=$blockedCountries, blockedMcc=$blockedMcc, cardTokens=$cardTokens, programLevel=$programLevel, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var accountTokens: MutableList = mutableListOf()
private var allowedCountries: MutableList = mutableListOf()
private var allowedMcc: MutableList = mutableListOf()
private var blockedCountries: MutableList = mutableListOf()
private var blockedMcc: MutableList = mutableListOf()
private var cardTokens: MutableList = mutableListOf()
private var programLevel: Boolean? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
internal fun from(authRuleCreateParams: AuthRuleCreateParams) = apply {
this.accountTokens(authRuleCreateParams.accountTokens ?: listOf())
this.allowedCountries(authRuleCreateParams.allowedCountries ?: listOf())
this.allowedMcc(authRuleCreateParams.allowedMcc ?: listOf())
this.blockedCountries(authRuleCreateParams.blockedCountries ?: listOf())
this.blockedMcc(authRuleCreateParams.blockedMcc ?: listOf())
this.cardTokens(authRuleCreateParams.cardTokens ?: listOf())
this.programLevel = authRuleCreateParams.programLevel
additionalQueryParams(authRuleCreateParams.additionalQueryParams)
additionalHeaders(authRuleCreateParams.additionalHeaders)
additionalBodyProperties(authRuleCreateParams.additionalBodyProperties)
}
/**
* Array of account_token(s) identifying the accounts that the Auth Rule applies to. Note
* that only this field or `card_tokens` can be provided for a given Auth Rule.
*/
fun accountTokens(accountTokens: List) = apply {
this.accountTokens.clear()
this.accountTokens.addAll(accountTokens)
}
/**
* Array of account_token(s) identifying the accounts that the Auth Rule applies to. Note
* that only this field or `card_tokens` can be provided for a given Auth Rule.
*/
fun addAccountToken(accountToken: String) = apply { this.accountTokens.add(accountToken) }
/**
* Countries in which the Auth Rule permits transactions. Note that Lithic maintains a list
* of countries in which all transactions are blocked; "allowing" those countries in an Auth
* Rule does not override the Lithic-wide restrictions.
*/
fun allowedCountries(allowedCountries: List) = apply {
this.allowedCountries.clear()
this.allowedCountries.addAll(allowedCountries)
}
/**
* Countries in which the Auth Rule permits transactions. Note that Lithic maintains a list
* of countries in which all transactions are blocked; "allowing" those countries in an Auth
* Rule does not override the Lithic-wide restrictions.
*/
fun addAllowedCountry(allowedCountry: String) = apply {
this.allowedCountries.add(allowedCountry)
}
/** Merchant category codes for which the Auth Rule permits transactions. */
fun allowedMcc(allowedMcc: List) = apply {
this.allowedMcc.clear()
this.allowedMcc.addAll(allowedMcc)
}
/** Merchant category codes for which the Auth Rule permits transactions. */
fun addAllowedMcc(allowedMcc: String) = apply { this.allowedMcc.add(allowedMcc) }
/** Countries in which the Auth Rule automatically declines transactions. */
fun blockedCountries(blockedCountries: List) = apply {
this.blockedCountries.clear()
this.blockedCountries.addAll(blockedCountries)
}
/** Countries in which the Auth Rule automatically declines transactions. */
fun addBlockedCountry(blockedCountry: String) = apply {
this.blockedCountries.add(blockedCountry)
}
/** Merchant category codes for which the Auth Rule automatically declines transactions. */
fun blockedMcc(blockedMcc: List) = apply {
this.blockedMcc.clear()
this.blockedMcc.addAll(blockedMcc)
}
/** Merchant category codes for which the Auth Rule automatically declines transactions. */
fun addBlockedMcc(blockedMcc: String) = apply { this.blockedMcc.add(blockedMcc) }
/**
* Array of card_token(s) identifying the cards that the Auth Rule applies to. Note that
* only this field or `account_tokens` can be provided for a given Auth Rule.
*/
fun cardTokens(cardTokens: List) = apply {
this.cardTokens.clear()
this.cardTokens.addAll(cardTokens)
}
/**
* Array of card_token(s) identifying the cards that the Auth Rule applies to. Note that
* only this field or `account_tokens` can be provided for a given Auth Rule.
*/
fun addCardToken(cardToken: String) = apply { this.cardTokens.add(cardToken) }
/** Boolean indicating whether the Auth Rule is applied at the program level. */
fun programLevel(programLevel: Boolean) = apply { this.programLevel = programLevel }
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(): AuthRuleCreateParams =
AuthRuleCreateParams(
if (accountTokens.size == 0) null else accountTokens.toUnmodifiable(),
if (allowedCountries.size == 0) null else allowedCountries.toUnmodifiable(),
if (allowedMcc.size == 0) null else allowedMcc.toUnmodifiable(),
if (blockedCountries.size == 0) null else blockedCountries.toUnmodifiable(),
if (blockedMcc.size == 0) null else blockedMcc.toUnmodifiable(),
if (cardTokens.size == 0) null else cardTokens.toUnmodifiable(),
programLevel,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
}