com.lithic.api.models.DisputeUpdateParams.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.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.time.OffsetDateTime
import java.util.Objects
import java.util.Optional
class DisputeUpdateParams
constructor(
private val disputeToken: String,
private val amount: Long?,
private val customerFiledDate: OffsetDateTime?,
private val customerNote: String?,
private val reason: Reason?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun disputeToken(): String = disputeToken
fun amount(): Optional = Optional.ofNullable(amount)
fun customerFiledDate(): Optional = Optional.ofNullable(customerFiledDate)
fun customerNote(): Optional = Optional.ofNullable(customerNote)
fun reason(): Optional = Optional.ofNullable(reason)
@JvmSynthetic
internal fun getBody(): DisputeUpdateBody {
return DisputeUpdateBody(
amount,
customerFiledDate,
customerNote,
reason,
additionalBodyProperties,
)
}
@JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams
@JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
fun getPathParam(index: Int): String {
return when (index) {
0 -> disputeToken
else -> ""
}
}
@JsonDeserialize(builder = DisputeUpdateBody.Builder::class)
@NoAutoDetect
class DisputeUpdateBody
internal constructor(
private val amount: Long?,
private val customerFiledDate: OffsetDateTime?,
private val customerNote: String?,
private val reason: Reason?,
private val additionalProperties: Map,
) {
/** Amount to dispute */
@JsonProperty("amount") fun amount(): Long? = amount
/** Date the customer filed the dispute */
@JsonProperty("customer_filed_date")
fun customerFiledDate(): OffsetDateTime? = customerFiledDate
/** Customer description of dispute */
@JsonProperty("customer_note") fun customerNote(): String? = customerNote
/** Reason for dispute */
@JsonProperty("reason") fun reason(): Reason? = reason
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
class Builder {
private var amount: Long? = null
private var customerFiledDate: OffsetDateTime? = null
private var customerNote: String? = null
private var reason: Reason? = null
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(disputeUpdateBody: DisputeUpdateBody) = apply {
this.amount = disputeUpdateBody.amount
this.customerFiledDate = disputeUpdateBody.customerFiledDate
this.customerNote = disputeUpdateBody.customerNote
this.reason = disputeUpdateBody.reason
additionalProperties(disputeUpdateBody.additionalProperties)
}
/** Amount to dispute */
@JsonProperty("amount") fun amount(amount: Long) = apply { this.amount = amount }
/** Date the customer filed the dispute */
@JsonProperty("customer_filed_date")
fun customerFiledDate(customerFiledDate: OffsetDateTime) = apply {
this.customerFiledDate = customerFiledDate
}
/** Customer description of dispute */
@JsonProperty("customer_note")
fun customerNote(customerNote: String) = apply { this.customerNote = customerNote }
/** Reason for dispute */
@JsonProperty("reason") fun reason(reason: Reason) = apply { this.reason = reason }
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(): DisputeUpdateBody =
DisputeUpdateBody(
amount,
customerFiledDate,
customerNote,
reason,
additionalProperties.toUnmodifiable(),
)
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is DisputeUpdateBody &&
this.amount == other.amount &&
this.customerFiledDate == other.customerFiledDate &&
this.customerNote == other.customerNote &&
this.reason == other.reason &&
this.additionalProperties == other.additionalProperties
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
amount,
customerFiledDate,
customerNote,
reason,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"DisputeUpdateBody{amount=$amount, customerFiledDate=$customerFiledDate, customerNote=$customerNote, reason=$reason, 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 DisputeUpdateParams &&
this.disputeToken == other.disputeToken &&
this.amount == other.amount &&
this.customerFiledDate == other.customerFiledDate &&
this.customerNote == other.customerNote &&
this.reason == other.reason &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
disputeToken,
amount,
customerFiledDate,
customerNote,
reason,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"DisputeUpdateParams{disputeToken=$disputeToken, amount=$amount, customerFiledDate=$customerFiledDate, customerNote=$customerNote, reason=$reason, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var disputeToken: String? = null
private var amount: Long? = null
private var customerFiledDate: OffsetDateTime? = null
private var customerNote: String? = null
private var reason: Reason? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(disputeUpdateParams: DisputeUpdateParams) = apply {
this.disputeToken = disputeUpdateParams.disputeToken
this.amount = disputeUpdateParams.amount
this.customerFiledDate = disputeUpdateParams.customerFiledDate
this.customerNote = disputeUpdateParams.customerNote
this.reason = disputeUpdateParams.reason
additionalQueryParams(disputeUpdateParams.additionalQueryParams)
additionalHeaders(disputeUpdateParams.additionalHeaders)
additionalBodyProperties(disputeUpdateParams.additionalBodyProperties)
}
fun disputeToken(disputeToken: String) = apply { this.disputeToken = disputeToken }
/** Amount to dispute */
fun amount(amount: Long) = apply { this.amount = amount }
/** Date the customer filed the dispute */
fun customerFiledDate(customerFiledDate: OffsetDateTime) = apply {
this.customerFiledDate = customerFiledDate
}
/** Customer description of dispute */
fun customerNote(customerNote: String) = apply { this.customerNote = customerNote }
/** Reason for dispute */
fun reason(reason: Reason) = apply { this.reason = reason }
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(): DisputeUpdateParams =
DisputeUpdateParams(
checkNotNull(disputeToken) { "`disputeToken` is required but was not set" },
amount,
customerFiledDate,
customerNote,
reason,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
class Reason
@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 Reason && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
@JvmField val ATM_CASH_MISDISPENSE = Reason(JsonField.of("ATM_CASH_MISDISPENSE"))
@JvmField val CANCELLED = Reason(JsonField.of("CANCELLED"))
@JvmField val DUPLICATED = Reason(JsonField.of("DUPLICATED"))
@JvmField val FRAUD_CARD_NOT_PRESENT = Reason(JsonField.of("FRAUD_CARD_NOT_PRESENT"))
@JvmField val FRAUD_CARD_PRESENT = Reason(JsonField.of("FRAUD_CARD_PRESENT"))
@JvmField val FRAUD_OTHER = Reason(JsonField.of("FRAUD_OTHER"))
@JvmField
val GOODS_SERVICES_NOT_AS_DESCRIBED =
Reason(JsonField.of("GOODS_SERVICES_NOT_AS_DESCRIBED"))
@JvmField
val GOODS_SERVICES_NOT_RECEIVED = Reason(JsonField.of("GOODS_SERVICES_NOT_RECEIVED"))
@JvmField val INCORRECT_AMOUNT = Reason(JsonField.of("INCORRECT_AMOUNT"))
@JvmField val MISSING_AUTH = Reason(JsonField.of("MISSING_AUTH"))
@JvmField val OTHER = Reason(JsonField.of("OTHER"))
@JvmField val PROCESSING_ERROR = Reason(JsonField.of("PROCESSING_ERROR"))
@JvmField
val RECURRING_TRANSACTION_NOT_CANCELLED =
Reason(JsonField.of("RECURRING_TRANSACTION_NOT_CANCELLED"))
@JvmField val REFUND_NOT_PROCESSED = Reason(JsonField.of("REFUND_NOT_PROCESSED"))
@JvmStatic fun of(value: String) = Reason(JsonField.of(value))
}
enum class Known {
ATM_CASH_MISDISPENSE,
CANCELLED,
DUPLICATED,
FRAUD_CARD_NOT_PRESENT,
FRAUD_CARD_PRESENT,
FRAUD_OTHER,
GOODS_SERVICES_NOT_AS_DESCRIBED,
GOODS_SERVICES_NOT_RECEIVED,
INCORRECT_AMOUNT,
MISSING_AUTH,
OTHER,
PROCESSING_ERROR,
RECURRING_TRANSACTION_NOT_CANCELLED,
REFUND_NOT_PROCESSED,
}
enum class Value {
ATM_CASH_MISDISPENSE,
CANCELLED,
DUPLICATED,
FRAUD_CARD_NOT_PRESENT,
FRAUD_CARD_PRESENT,
FRAUD_OTHER,
GOODS_SERVICES_NOT_AS_DESCRIBED,
GOODS_SERVICES_NOT_RECEIVED,
INCORRECT_AMOUNT,
MISSING_AUTH,
OTHER,
PROCESSING_ERROR,
RECURRING_TRANSACTION_NOT_CANCELLED,
REFUND_NOT_PROCESSED,
_UNKNOWN,
}
fun value(): Value =
when (this) {
ATM_CASH_MISDISPENSE -> Value.ATM_CASH_MISDISPENSE
CANCELLED -> Value.CANCELLED
DUPLICATED -> Value.DUPLICATED
FRAUD_CARD_NOT_PRESENT -> Value.FRAUD_CARD_NOT_PRESENT
FRAUD_CARD_PRESENT -> Value.FRAUD_CARD_PRESENT
FRAUD_OTHER -> Value.FRAUD_OTHER
GOODS_SERVICES_NOT_AS_DESCRIBED -> Value.GOODS_SERVICES_NOT_AS_DESCRIBED
GOODS_SERVICES_NOT_RECEIVED -> Value.GOODS_SERVICES_NOT_RECEIVED
INCORRECT_AMOUNT -> Value.INCORRECT_AMOUNT
MISSING_AUTH -> Value.MISSING_AUTH
OTHER -> Value.OTHER
PROCESSING_ERROR -> Value.PROCESSING_ERROR
RECURRING_TRANSACTION_NOT_CANCELLED -> Value.RECURRING_TRANSACTION_NOT_CANCELLED
REFUND_NOT_PROCESSED -> Value.REFUND_NOT_PROCESSED
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
ATM_CASH_MISDISPENSE -> Known.ATM_CASH_MISDISPENSE
CANCELLED -> Known.CANCELLED
DUPLICATED -> Known.DUPLICATED
FRAUD_CARD_NOT_PRESENT -> Known.FRAUD_CARD_NOT_PRESENT
FRAUD_CARD_PRESENT -> Known.FRAUD_CARD_PRESENT
FRAUD_OTHER -> Known.FRAUD_OTHER
GOODS_SERVICES_NOT_AS_DESCRIBED -> Known.GOODS_SERVICES_NOT_AS_DESCRIBED
GOODS_SERVICES_NOT_RECEIVED -> Known.GOODS_SERVICES_NOT_RECEIVED
INCORRECT_AMOUNT -> Known.INCORRECT_AMOUNT
MISSING_AUTH -> Known.MISSING_AUTH
OTHER -> Known.OTHER
PROCESSING_ERROR -> Known.PROCESSING_ERROR
RECURRING_TRANSACTION_NOT_CANCELLED -> Known.RECURRING_TRANSACTION_NOT_CANCELLED
REFUND_NOT_PROCESSED -> Known.REFUND_NOT_PROCESSED
else -> throw LithicInvalidDataException("Unknown Reason: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
}