com.lithic.api.models.Transfer.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.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.JsonMissing
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 java.time.OffsetDateTime
import java.util.Objects
@JsonDeserialize(builder = Transfer.Builder::class)
@NoAutoDetect
class Transfer
private constructor(
private val category: JsonField,
private val created: JsonField,
private val currency: JsonField,
private val descriptor: JsonField,
private val events: JsonField>,
private val fromBalance: JsonField>,
private val pendingAmount: JsonField,
private val result: JsonField,
private val settledAmount: JsonField,
private val status: JsonField,
private val toBalance: JsonField>,
private val token: JsonField,
private val updated: JsonField,
private val additionalProperties: Map,
) {
private var validated: Boolean = false
private var hashCode: Int = 0
/**
* Status types:
* - `TRANSFER` - Internal transfer of funds between financial accounts in your program.
*/
fun category(): Category? = category.getNullable("category")
/** Date and time when the transfer occurred. UTC time zone. */
fun created(): OffsetDateTime? = created.getNullable("created")
/** 3-digit alphabetic ISO 4217 code for the settling currency of the transaction. */
fun currency(): String? = currency.getNullable("currency")
/** A string that provides a description of the transfer; may be useful to display to users. */
fun descriptor(): String? = descriptor.getNullable("descriptor")
/** A list of all financial events that have modified this trasnfer. */
fun events(): List? = events.getNullable("events")
/** The updated balance of the sending financial account. */
fun fromBalance(): List? = fromBalance.getNullable("from_balance")
/**
* Pending amount of the transaction in the currency's smallest unit (e.g., cents), including
* any acquirer fees. The value of this field will go to zero over time once the financial
* transaction is settled.
*/
fun pendingAmount(): Long? = pendingAmount.getNullable("pending_amount")
/**
* APPROVED transactions were successful while DECLINED transactions were declined by user,
* Lithic, or the network.
*/
fun result(): Result? = result.getNullable("result")
/**
* Amount of the transaction that has been settled in the currency's smallest unit (e.g.,
* cents).
*/
fun settledAmount(): Long? = settledAmount.getNullable("settled_amount")
/**
* Status types:
* - `DECLINED` - The transfer was declined.
* - `EXPIRED` - The transfer was held in pending for too long and expired.
* - `PENDING` - The transfer is pending release from a hold.
* - `SETTLED` - The transfer is completed.
* - `VOIDED` - The transfer was reversed before it settled.
*/
fun status(): Status? = status.getNullable("status")
/** The updated balance of the receiving financial account. */
fun toBalance(): List? = toBalance.getNullable("to_balance")
/** Globally unique identifier for the transfer event. */
fun token(): String? = token.getNullable("token")
/** Date and time when the financial transaction was last updated. UTC time zone. */
fun updated(): OffsetDateTime? = updated.getNullable("updated")
/**
* Status types:
* - `TRANSFER` - Internal transfer of funds between financial accounts in your program.
*/
@JsonProperty("category") @ExcludeMissing fun _category() = category
/** Date and time when the transfer occurred. UTC time zone. */
@JsonProperty("created") @ExcludeMissing fun _created() = created
/** 3-digit alphabetic ISO 4217 code for the settling currency of the transaction. */
@JsonProperty("currency") @ExcludeMissing fun _currency() = currency
/** A string that provides a description of the transfer; may be useful to display to users. */
@JsonProperty("descriptor") @ExcludeMissing fun _descriptor() = descriptor
/** A list of all financial events that have modified this trasnfer. */
@JsonProperty("events") @ExcludeMissing fun _events() = events
/** The updated balance of the sending financial account. */
@JsonProperty("from_balance") @ExcludeMissing fun _fromBalance() = fromBalance
/**
* Pending amount of the transaction in the currency's smallest unit (e.g., cents), including
* any acquirer fees. The value of this field will go to zero over time once the financial
* transaction is settled.
*/
@JsonProperty("pending_amount") @ExcludeMissing fun _pendingAmount() = pendingAmount
/**
* APPROVED transactions were successful while DECLINED transactions were declined by user,
* Lithic, or the network.
*/
@JsonProperty("result") @ExcludeMissing fun _result() = result
/**
* Amount of the transaction that has been settled in the currency's smallest unit (e.g.,
* cents).
*/
@JsonProperty("settled_amount") @ExcludeMissing fun _settledAmount() = settledAmount
/**
* Status types:
* - `DECLINED` - The transfer was declined.
* - `EXPIRED` - The transfer was held in pending for too long and expired.
* - `PENDING` - The transfer is pending release from a hold.
* - `SETTLED` - The transfer is completed.
* - `VOIDED` - The transfer was reversed before it settled.
*/
@JsonProperty("status") @ExcludeMissing fun _status() = status
/** The updated balance of the receiving financial account. */
@JsonProperty("to_balance") @ExcludeMissing fun _toBalance() = toBalance
/** Globally unique identifier for the transfer event. */
@JsonProperty("token") @ExcludeMissing fun _token() = token
/** Date and time when the financial transaction was last updated. UTC time zone. */
@JsonProperty("updated") @ExcludeMissing fun _updated() = updated
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun validate(): Transfer = apply {
if (!validated) {
category()
created()
currency()
descriptor()
events()?.forEach { it.validate() }
fromBalance()?.forEach { it.validate() }
pendingAmount()
result()
settledAmount()
status()
toBalance()?.forEach { it.validate() }
token()
updated()
validated = true
}
}
fun toBuilder() = Builder().from(this)
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is Transfer &&
this.category == other.category &&
this.created == other.created &&
this.currency == other.currency &&
this.descriptor == other.descriptor &&
this.events == other.events &&
this.fromBalance == other.fromBalance &&
this.pendingAmount == other.pendingAmount &&
this.result == other.result &&
this.settledAmount == other.settledAmount &&
this.status == other.status &&
this.toBalance == other.toBalance &&
this.token == other.token &&
this.updated == other.updated &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
category,
created,
currency,
descriptor,
events,
fromBalance,
pendingAmount,
result,
settledAmount,
status,
toBalance,
token,
updated,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"Transfer{category=$category, created=$created, currency=$currency, descriptor=$descriptor, events=$events, fromBalance=$fromBalance, pendingAmount=$pendingAmount, result=$result, settledAmount=$settledAmount, status=$status, toBalance=$toBalance, token=$token, updated=$updated, additionalProperties=$additionalProperties}"
companion object {
fun builder() = Builder()
}
class Builder {
private var category: JsonField = JsonMissing.of()
private var created: JsonField = JsonMissing.of()
private var currency: JsonField = JsonMissing.of()
private var descriptor: JsonField = JsonMissing.of()
private var events: JsonField> = JsonMissing.of()
private var fromBalance: JsonField> = JsonMissing.of()
private var pendingAmount: JsonField = JsonMissing.of()
private var result: JsonField = JsonMissing.of()
private var settledAmount: JsonField = JsonMissing.of()
private var status: JsonField = JsonMissing.of()
private var toBalance: JsonField> = JsonMissing.of()
private var token: JsonField = JsonMissing.of()
private var updated: JsonField = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(transfer: Transfer) = apply {
this.category = transfer.category
this.created = transfer.created
this.currency = transfer.currency
this.descriptor = transfer.descriptor
this.events = transfer.events
this.fromBalance = transfer.fromBalance
this.pendingAmount = transfer.pendingAmount
this.result = transfer.result
this.settledAmount = transfer.settledAmount
this.status = transfer.status
this.toBalance = transfer.toBalance
this.token = transfer.token
this.updated = transfer.updated
additionalProperties(transfer.additionalProperties)
}
/**
* Status types:
* - `TRANSFER` - Internal transfer of funds between financial accounts in your program.
*/
fun category(category: Category) = category(JsonField.of(category))
/**
* Status types:
* - `TRANSFER` - Internal transfer of funds between financial accounts in your program.
*/
@JsonProperty("category")
@ExcludeMissing
fun category(category: JsonField) = apply { this.category = category }
/** Date and time when the transfer occurred. UTC time zone. */
fun created(created: OffsetDateTime) = created(JsonField.of(created))
/** Date and time when the transfer occurred. UTC time zone. */
@JsonProperty("created")
@ExcludeMissing
fun created(created: JsonField) = apply { this.created = created }
/** 3-digit alphabetic ISO 4217 code for the settling currency of the transaction. */
fun currency(currency: String) = currency(JsonField.of(currency))
/** 3-digit alphabetic ISO 4217 code for the settling currency of the transaction. */
@JsonProperty("currency")
@ExcludeMissing
fun currency(currency: JsonField) = apply { this.currency = currency }
/**
* A string that provides a description of the transfer; may be useful to display to users.
*/
fun descriptor(descriptor: String) = descriptor(JsonField.of(descriptor))
/**
* A string that provides a description of the transfer; may be useful to display to users.
*/
@JsonProperty("descriptor")
@ExcludeMissing
fun descriptor(descriptor: JsonField) = apply { this.descriptor = descriptor }
/** A list of all financial events that have modified this trasnfer. */
fun events(events: List) = events(JsonField.of(events))
/** A list of all financial events that have modified this trasnfer. */
@JsonProperty("events")
@ExcludeMissing
fun events(events: JsonField>) = apply { this.events = events }
/** The updated balance of the sending financial account. */
fun fromBalance(fromBalance: List) = fromBalance(JsonField.of(fromBalance))
/** The updated balance of the sending financial account. */
@JsonProperty("from_balance")
@ExcludeMissing
fun fromBalance(fromBalance: JsonField>) = apply {
this.fromBalance = fromBalance
}
/**
* Pending amount of the transaction in the currency's smallest unit (e.g., cents),
* including any acquirer fees. The value of this field will go to zero over time once the
* financial transaction is settled.
*/
fun pendingAmount(pendingAmount: Long) = pendingAmount(JsonField.of(pendingAmount))
/**
* Pending amount of the transaction in the currency's smallest unit (e.g., cents),
* including any acquirer fees. The value of this field will go to zero over time once the
* financial transaction is settled.
*/
@JsonProperty("pending_amount")
@ExcludeMissing
fun pendingAmount(pendingAmount: JsonField) = apply {
this.pendingAmount = pendingAmount
}
/**
* APPROVED transactions were successful while DECLINED transactions were declined by user,
* Lithic, or the network.
*/
fun result(result: Result) = result(JsonField.of(result))
/**
* APPROVED transactions were successful while DECLINED transactions were declined by user,
* Lithic, or the network.
*/
@JsonProperty("result")
@ExcludeMissing
fun result(result: JsonField) = apply { this.result = result }
/**
* Amount of the transaction that has been settled in the currency's smallest unit (e.g.,
* cents).
*/
fun settledAmount(settledAmount: Long) = settledAmount(JsonField.of(settledAmount))
/**
* Amount of the transaction that has been settled in the currency's smallest unit (e.g.,
* cents).
*/
@JsonProperty("settled_amount")
@ExcludeMissing
fun settledAmount(settledAmount: JsonField) = apply {
this.settledAmount = settledAmount
}
/**
* Status types:
* - `DECLINED` - The transfer was declined.
* - `EXPIRED` - The transfer was held in pending for too long and expired.
* - `PENDING` - The transfer is pending release from a hold.
* - `SETTLED` - The transfer is completed.
* - `VOIDED` - The transfer was reversed before it settled.
*/
fun status(status: Status) = status(JsonField.of(status))
/**
* Status types:
* - `DECLINED` - The transfer was declined.
* - `EXPIRED` - The transfer was held in pending for too long and expired.
* - `PENDING` - The transfer is pending release from a hold.
* - `SETTLED` - The transfer is completed.
* - `VOIDED` - The transfer was reversed before it settled.
*/
@JsonProperty("status")
@ExcludeMissing
fun status(status: JsonField) = apply { this.status = status }
/** The updated balance of the receiving financial account. */
fun toBalance(toBalance: List) = toBalance(JsonField.of(toBalance))
/** The updated balance of the receiving financial account. */
@JsonProperty("to_balance")
@ExcludeMissing
fun toBalance(toBalance: JsonField>) = apply { this.toBalance = toBalance }
/** Globally unique identifier for the transfer event. */
fun token(token: String) = token(JsonField.of(token))
/** Globally unique identifier for the transfer event. */
@JsonProperty("token")
@ExcludeMissing
fun token(token: JsonField) = apply { this.token = token }
/** Date and time when the financial transaction was last updated. UTC time zone. */
fun updated(updated: OffsetDateTime) = updated(JsonField.of(updated))
/** Date and time when the financial transaction was last updated. UTC time zone. */
@JsonProperty("updated")
@ExcludeMissing
fun updated(updated: JsonField) = apply { this.updated = updated }
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(): Transfer =
Transfer(
category,
created,
currency,
descriptor,
events.map { it.toUnmodifiable() },
fromBalance.map { it.toUnmodifiable() },
pendingAmount,
result,
settledAmount,
status,
toBalance.map { it.toUnmodifiable() },
token,
updated,
additionalProperties.toUnmodifiable(),
)
}
class Category
@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 Category && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val TRANSFER = Category(JsonField.of("TRANSFER"))
fun of(value: String) = Category(JsonField.of(value))
}
enum class Known {
TRANSFER,
}
enum class Value {
TRANSFER,
_UNKNOWN,
}
fun value(): Value =
when (this) {
TRANSFER -> Value.TRANSFER
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
TRANSFER -> Known.TRANSFER
else -> throw LithicInvalidDataException("Unknown Category: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
@JsonDeserialize(builder = FinancialEvent.Builder::class)
@NoAutoDetect
class FinancialEvent
private constructor(
private val amount: JsonField,
private val created: JsonField,
private val result: JsonField,
private val token: JsonField,
private val type: JsonField,
private val additionalProperties: Map,
) {
private var validated: Boolean = false
private var hashCode: Int = 0
/**
* Amount of the financial event that has been settled in the currency's smallest unit
* (e.g., cents).
*/
fun amount(): Long? = amount.getNullable("amount")
/** Date and time when the financial event occurred. UTC time zone. */
fun created(): OffsetDateTime? = created.getNullable("created")
/**
* APPROVED financial events were successful while DECLINED financial events were declined
* by user, Lithic, or the network.
*/
fun result(): Result? = result.getNullable("result")
/** Globally unique identifier. */
fun token(): String? = token.getNullable("token")
/**
* Event types: _ `ACH_ORIGINATION_INITIATED` - ACH origination received and pending
* approval/release from an ACH hold. _ `ACH_ORIGINATION_REVIEWED` - ACH origination has
* completed the review process. _ `ACH_ORIGINATION_CANCELLED` - ACH origination has been
* cancelled. _ `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed and sent to
* the fed. _ `ACH_ORIGINATION_SETTLED` - ACH origination has settled. _
* `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to available balance.
* _ `ACH_RETURN_PROCESSED` - ACH origination returned by the Receiving Depository Financial
* Institution. _ `ACH_RECEIPT_PROCESSED` - ACH receipt pending release from an ACH holder.
* _ `ACH_RETURN_INITIATED` - ACH initiated return for a ACH receipt. _
* `ACH_RECEIPT_SETTLED` - ACH receipt funds have settled. _ `ACH_RECEIPT_RELEASED` - ACH
* receipt released from pending to available balance. _ `AUTHORIZATION` - Authorize a card
* transaction. _ `AUTHORIZATION_ADVICE` - Advice on a card transaction. _
* `AUTHORIZATION_EXPIRY` - Card Authorization has expired and reversed by Lithic. _
* `AUTHORIZATION_REVERSAL` - Card Authorization was reversed by the merchant. _
* `BALANCE_INQUIRY` - A card balance inquiry (typically a $0 authorization) has occurred on
* a card. _ `CLEARING` - Card Transaction is settled. _ `CORRECTION_DEBIT` - Manual card
* transaction correction (Debit). _ `CORRECTION_CREDIT` - Manual card transaction
* correction (Credit). _ `CREDIT_AUTHORIZATION` - A refund or credit card authorization
* from a merchant. _ `CREDIT_AUTHORIZATION_ADVICE` - A credit card authorization was
* approved on your behalf by the network. _ `FINANCIAL_AUTHORIZATION` - A request from a
* merchant to debit card funds without additional clearing. _
* `FINANCIAL_CREDIT_AUTHORIZATION` - A request from a merchant to refund or credit card
* funds without additional clearing. _ `RETURN` - A card refund has been processed on the
* transaction. _ `RETURN_REVERSAL` - A card refund has been reversed (e.g., when a merchant
* reverses an incorrect refund). _ `TRANSFER` - Successful internal transfer of funds
* between financial accounts. \* `TRANSFER_INSUFFICIENT_FUNDS` - Declined internal transfer
* of funds due to insufficient balance of the sender.
*/
fun type(): FinancialEventType? = type.getNullable("type")
/**
* Amount of the financial event that has been settled in the currency's smallest unit
* (e.g., cents).
*/
@JsonProperty("amount") @ExcludeMissing fun _amount() = amount
/** Date and time when the financial event occurred. UTC time zone. */
@JsonProperty("created") @ExcludeMissing fun _created() = created
/**
* APPROVED financial events were successful while DECLINED financial events were declined
* by user, Lithic, or the network.
*/
@JsonProperty("result") @ExcludeMissing fun _result() = result
/** Globally unique identifier. */
@JsonProperty("token") @ExcludeMissing fun _token() = token
/**
* Event types: _ `ACH_ORIGINATION_INITIATED` - ACH origination received and pending
* approval/release from an ACH hold. _ `ACH_ORIGINATION_REVIEWED` - ACH origination has
* completed the review process. _ `ACH_ORIGINATION_CANCELLED` - ACH origination has been
* cancelled. _ `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed and sent to
* the fed. _ `ACH_ORIGINATION_SETTLED` - ACH origination has settled. _
* `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to available balance.
* _ `ACH_RETURN_PROCESSED` - ACH origination returned by the Receiving Depository Financial
* Institution. _ `ACH_RECEIPT_PROCESSED` - ACH receipt pending release from an ACH holder.
* _ `ACH_RETURN_INITIATED` - ACH initiated return for a ACH receipt. _
* `ACH_RECEIPT_SETTLED` - ACH receipt funds have settled. _ `ACH_RECEIPT_RELEASED` - ACH
* receipt released from pending to available balance. _ `AUTHORIZATION` - Authorize a card
* transaction. _ `AUTHORIZATION_ADVICE` - Advice on a card transaction. _
* `AUTHORIZATION_EXPIRY` - Card Authorization has expired and reversed by Lithic. _
* `AUTHORIZATION_REVERSAL` - Card Authorization was reversed by the merchant. _
* `BALANCE_INQUIRY` - A card balance inquiry (typically a $0 authorization) has occurred on
* a card. _ `CLEARING` - Card Transaction is settled. _ `CORRECTION_DEBIT` - Manual card
* transaction correction (Debit). _ `CORRECTION_CREDIT` - Manual card transaction
* correction (Credit). _ `CREDIT_AUTHORIZATION` - A refund or credit card authorization
* from a merchant. _ `CREDIT_AUTHORIZATION_ADVICE` - A credit card authorization was
* approved on your behalf by the network. _ `FINANCIAL_AUTHORIZATION` - A request from a
* merchant to debit card funds without additional clearing. _
* `FINANCIAL_CREDIT_AUTHORIZATION` - A request from a merchant to refund or credit card
* funds without additional clearing. _ `RETURN` - A card refund has been processed on the
* transaction. _ `RETURN_REVERSAL` - A card refund has been reversed (e.g., when a merchant
* reverses an incorrect refund). _ `TRANSFER` - Successful internal transfer of funds
* between financial accounts. \* `TRANSFER_INSUFFICIENT_FUNDS` - Declined internal transfer
* of funds due to insufficient balance of the sender.
*/
@JsonProperty("type") @ExcludeMissing fun _type() = type
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun validate(): FinancialEvent = apply {
if (!validated) {
amount()
created()
result()
token()
type()
validated = true
}
}
fun toBuilder() = Builder().from(this)
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is FinancialEvent &&
this.amount == other.amount &&
this.created == other.created &&
this.result == other.result &&
this.token == other.token &&
this.type == other.type &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
amount,
created,
result,
token,
type,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"FinancialEvent{amount=$amount, created=$created, result=$result, token=$token, type=$type, additionalProperties=$additionalProperties}"
companion object {
fun builder() = Builder()
}
class Builder {
private var amount: JsonField = JsonMissing.of()
private var created: JsonField = JsonMissing.of()
private var result: JsonField = JsonMissing.of()
private var token: JsonField = JsonMissing.of()
private var type: JsonField = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(financialEvent: FinancialEvent) = apply {
this.amount = financialEvent.amount
this.created = financialEvent.created
this.result = financialEvent.result
this.token = financialEvent.token
this.type = financialEvent.type
additionalProperties(financialEvent.additionalProperties)
}
/**
* Amount of the financial event that has been settled in the currency's smallest unit
* (e.g., cents).
*/
fun amount(amount: Long) = amount(JsonField.of(amount))
/**
* Amount of the financial event that has been settled in the currency's smallest unit
* (e.g., cents).
*/
@JsonProperty("amount")
@ExcludeMissing
fun amount(amount: JsonField) = apply { this.amount = amount }
/** Date and time when the financial event occurred. UTC time zone. */
fun created(created: OffsetDateTime) = created(JsonField.of(created))
/** Date and time when the financial event occurred. UTC time zone. */
@JsonProperty("created")
@ExcludeMissing
fun created(created: JsonField) = apply { this.created = created }
/**
* APPROVED financial events were successful while DECLINED financial events were
* declined by user, Lithic, or the network.
*/
fun result(result: Result) = result(JsonField.of(result))
/**
* APPROVED financial events were successful while DECLINED financial events were
* declined by user, Lithic, or the network.
*/
@JsonProperty("result")
@ExcludeMissing
fun result(result: JsonField) = apply { this.result = result }
/** Globally unique identifier. */
fun token(token: String) = token(JsonField.of(token))
/** Globally unique identifier. */
@JsonProperty("token")
@ExcludeMissing
fun token(token: JsonField) = apply { this.token = token }
/**
* Event types: _ `ACH_ORIGINATION_INITIATED` - ACH origination received and pending
* approval/release from an ACH hold. _ `ACH_ORIGINATION_REVIEWED` - ACH origination has
* completed the review process. _ `ACH_ORIGINATION_CANCELLED` - ACH origination has
* been cancelled. _ `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed
* and sent to the fed. _ `ACH_ORIGINATION_SETTLED` - ACH origination has settled. _
* `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to available
* balance. _ `ACH_RETURN_PROCESSED` - ACH origination returned by the Receiving
* Depository Financial Institution. _ `ACH_RECEIPT_PROCESSED` - ACH receipt pending
* release from an ACH holder. _ `ACH_RETURN_INITIATED` - ACH initiated return for a ACH
* receipt. _ `ACH_RECEIPT_SETTLED` - ACH receipt funds have settled. _
* `ACH_RECEIPT_RELEASED` - ACH receipt released from pending to available balance. _
* `AUTHORIZATION` - Authorize a card transaction. _ `AUTHORIZATION_ADVICE` - Advice on
* a card transaction. _ `AUTHORIZATION_EXPIRY` - Card Authorization has expired and
* reversed by Lithic. _ `AUTHORIZATION_REVERSAL` - Card Authorization was reversed by
* the merchant. _ `BALANCE_INQUIRY` - A card balance inquiry (typically a $0
* authorization) has occurred on a card. _ `CLEARING` - Card Transaction is settled. _
* `CORRECTION_DEBIT` - Manual card transaction correction (Debit). _
* `CORRECTION_CREDIT` - Manual card transaction correction (Credit). _
* `CREDIT_AUTHORIZATION` - A refund or credit card authorization from a merchant. _
* `CREDIT_AUTHORIZATION_ADVICE` - A credit card authorization was approved on your
* behalf by the network. _ `FINANCIAL_AUTHORIZATION` - A request from a merchant to
* debit card funds without additional clearing. _ `FINANCIAL_CREDIT_AUTHORIZATION` - A
* request from a merchant to refund or credit card funds without additional clearing. _
* `RETURN` - A card refund has been processed on the transaction. _ `RETURN_REVERSAL` -
* A card refund has been reversed (e.g., when a merchant reverses an incorrect refund).
* _ `TRANSFER` - Successful internal transfer of funds between financial accounts. \*
* `TRANSFER_INSUFFICIENT_FUNDS` - Declined internal transfer of funds due to
* insufficient balance of the sender.
*/
fun type(type: FinancialEventType) = type(JsonField.of(type))
/**
* Event types: _ `ACH_ORIGINATION_INITIATED` - ACH origination received and pending
* approval/release from an ACH hold. _ `ACH_ORIGINATION_REVIEWED` - ACH origination has
* completed the review process. _ `ACH_ORIGINATION_CANCELLED` - ACH origination has
* been cancelled. _ `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed
* and sent to the fed. _ `ACH_ORIGINATION_SETTLED` - ACH origination has settled. _
* `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to available
* balance. _ `ACH_RETURN_PROCESSED` - ACH origination returned by the Receiving
* Depository Financial Institution. _ `ACH_RECEIPT_PROCESSED` - ACH receipt pending
* release from an ACH holder. _ `ACH_RETURN_INITIATED` - ACH initiated return for a ACH
* receipt. _ `ACH_RECEIPT_SETTLED` - ACH receipt funds have settled. _
* `ACH_RECEIPT_RELEASED` - ACH receipt released from pending to available balance. _
* `AUTHORIZATION` - Authorize a card transaction. _ `AUTHORIZATION_ADVICE` - Advice on
* a card transaction. _ `AUTHORIZATION_EXPIRY` - Card Authorization has expired and
* reversed by Lithic. _ `AUTHORIZATION_REVERSAL` - Card Authorization was reversed by
* the merchant. _ `BALANCE_INQUIRY` - A card balance inquiry (typically a $0
* authorization) has occurred on a card. _ `CLEARING` - Card Transaction is settled. _
* `CORRECTION_DEBIT` - Manual card transaction correction (Debit). _
* `CORRECTION_CREDIT` - Manual card transaction correction (Credit). _
* `CREDIT_AUTHORIZATION` - A refund or credit card authorization from a merchant. _
* `CREDIT_AUTHORIZATION_ADVICE` - A credit card authorization was approved on your
* behalf by the network. _ `FINANCIAL_AUTHORIZATION` - A request from a merchant to
* debit card funds without additional clearing. _ `FINANCIAL_CREDIT_AUTHORIZATION` - A
* request from a merchant to refund or credit card funds without additional clearing. _
* `RETURN` - A card refund has been processed on the transaction. _ `RETURN_REVERSAL` -
* A card refund has been reversed (e.g., when a merchant reverses an incorrect refund).
* _ `TRANSFER` - Successful internal transfer of funds between financial accounts. \*
* `TRANSFER_INSUFFICIENT_FUNDS` - Declined internal transfer of funds due to
* insufficient balance of the sender.
*/
@JsonProperty("type")
@ExcludeMissing
fun type(type: JsonField) = apply { this.type = type }
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(): FinancialEvent =
FinancialEvent(
amount,
created,
result,
token,
type,
additionalProperties.toUnmodifiable(),
)
}
class Result
@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 Result && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val APPROVED = Result(JsonField.of("APPROVED"))
val DECLINED = Result(JsonField.of("DECLINED"))
fun of(value: String) = Result(JsonField.of(value))
}
enum class Known {
APPROVED,
DECLINED,
}
enum class Value {
APPROVED,
DECLINED,
_UNKNOWN,
}
fun value(): Value =
when (this) {
APPROVED -> Value.APPROVED
DECLINED -> Value.DECLINED
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
APPROVED -> Known.APPROVED
DECLINED -> Known.DECLINED
else -> throw LithicInvalidDataException("Unknown Result: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
class FinancialEventType
@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 FinancialEventType && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val ACH_ORIGINATION_CANCELLED =
FinancialEventType(JsonField.of("ACH_ORIGINATION_CANCELLED"))
val ACH_ORIGINATION_INITIATED =
FinancialEventType(JsonField.of("ACH_ORIGINATION_INITIATED"))
val ACH_ORIGINATION_PROCESSED =
FinancialEventType(JsonField.of("ACH_ORIGINATION_PROCESSED"))
val ACH_ORIGINATION_SETTLED =
FinancialEventType(JsonField.of("ACH_ORIGINATION_SETTLED"))
val ACH_ORIGINATION_RELEASED =
FinancialEventType(JsonField.of("ACH_ORIGINATION_RELEASED"))
val ACH_ORIGINATION_REVIEWED =
FinancialEventType(JsonField.of("ACH_ORIGINATION_REVIEWED"))
val ACH_RECEIPT_PROCESSED =
FinancialEventType(JsonField.of("ACH_RECEIPT_PROCESSED"))
val ACH_RECEIPT_SETTLED = FinancialEventType(JsonField.of("ACH_RECEIPT_SETTLED"))
val ACH_RETURN_INITIATED = FinancialEventType(JsonField.of("ACH_RETURN_INITIATED"))
val ACH_RETURN_PROCESSED = FinancialEventType(JsonField.of("ACH_RETURN_PROCESSED"))
val AUTHORIZATION = FinancialEventType(JsonField.of("AUTHORIZATION"))
val AUTHORIZATION_ADVICE = FinancialEventType(JsonField.of("AUTHORIZATION_ADVICE"))
val AUTHORIZATION_EXPIRY = FinancialEventType(JsonField.of("AUTHORIZATION_EXPIRY"))
val AUTHORIZATION_REVERSAL =
FinancialEventType(JsonField.of("AUTHORIZATION_REVERSAL"))
val BALANCE_INQUIRY = FinancialEventType(JsonField.of("BALANCE_INQUIRY"))
val CLEARING = FinancialEventType(JsonField.of("CLEARING"))
val CORRECTION_CREDIT = FinancialEventType(JsonField.of("CORRECTION_CREDIT"))
val CORRECTION_DEBIT = FinancialEventType(JsonField.of("CORRECTION_DEBIT"))
val CREDIT_AUTHORIZATION = FinancialEventType(JsonField.of("CREDIT_AUTHORIZATION"))
val CREDIT_AUTHORIZATION_ADVICE =
FinancialEventType(JsonField.of("CREDIT_AUTHORIZATION_ADVICE"))
val FINANCIAL_AUTHORIZATION =
FinancialEventType(JsonField.of("FINANCIAL_AUTHORIZATION"))
val FINANCIAL_CREDIT_AUTHORIZATION =
FinancialEventType(JsonField.of("FINANCIAL_CREDIT_AUTHORIZATION"))
val RETURN = FinancialEventType(JsonField.of("RETURN"))
val RETURN_REVERSAL = FinancialEventType(JsonField.of("RETURN_REVERSAL"))
val TRANSFER = FinancialEventType(JsonField.of("TRANSFER"))
val TRANSFER_INSUFFICIENT_FUNDS =
FinancialEventType(JsonField.of("TRANSFER_INSUFFICIENT_FUNDS"))
fun of(value: String) = FinancialEventType(JsonField.of(value))
}
enum class Known {
ACH_ORIGINATION_CANCELLED,
ACH_ORIGINATION_INITIATED,
ACH_ORIGINATION_PROCESSED,
ACH_ORIGINATION_SETTLED,
ACH_ORIGINATION_RELEASED,
ACH_ORIGINATION_REVIEWED,
ACH_RECEIPT_PROCESSED,
ACH_RECEIPT_SETTLED,
ACH_RETURN_INITIATED,
ACH_RETURN_PROCESSED,
AUTHORIZATION,
AUTHORIZATION_ADVICE,
AUTHORIZATION_EXPIRY,
AUTHORIZATION_REVERSAL,
BALANCE_INQUIRY,
CLEARING,
CORRECTION_CREDIT,
CORRECTION_DEBIT,
CREDIT_AUTHORIZATION,
CREDIT_AUTHORIZATION_ADVICE,
FINANCIAL_AUTHORIZATION,
FINANCIAL_CREDIT_AUTHORIZATION,
RETURN,
RETURN_REVERSAL,
TRANSFER,
TRANSFER_INSUFFICIENT_FUNDS,
}
enum class Value {
ACH_ORIGINATION_CANCELLED,
ACH_ORIGINATION_INITIATED,
ACH_ORIGINATION_PROCESSED,
ACH_ORIGINATION_SETTLED,
ACH_ORIGINATION_RELEASED,
ACH_ORIGINATION_REVIEWED,
ACH_RECEIPT_PROCESSED,
ACH_RECEIPT_SETTLED,
ACH_RETURN_INITIATED,
ACH_RETURN_PROCESSED,
AUTHORIZATION,
AUTHORIZATION_ADVICE,
AUTHORIZATION_EXPIRY,
AUTHORIZATION_REVERSAL,
BALANCE_INQUIRY,
CLEARING,
CORRECTION_CREDIT,
CORRECTION_DEBIT,
CREDIT_AUTHORIZATION,
CREDIT_AUTHORIZATION_ADVICE,
FINANCIAL_AUTHORIZATION,
FINANCIAL_CREDIT_AUTHORIZATION,
RETURN,
RETURN_REVERSAL,
TRANSFER,
TRANSFER_INSUFFICIENT_FUNDS,
_UNKNOWN,
}
fun value(): Value =
when (this) {
ACH_ORIGINATION_CANCELLED -> Value.ACH_ORIGINATION_CANCELLED
ACH_ORIGINATION_INITIATED -> Value.ACH_ORIGINATION_INITIATED
ACH_ORIGINATION_PROCESSED -> Value.ACH_ORIGINATION_PROCESSED
ACH_ORIGINATION_SETTLED -> Value.ACH_ORIGINATION_SETTLED
ACH_ORIGINATION_RELEASED -> Value.ACH_ORIGINATION_RELEASED
ACH_ORIGINATION_REVIEWED -> Value.ACH_ORIGINATION_REVIEWED
ACH_RECEIPT_PROCESSED -> Value.ACH_RECEIPT_PROCESSED
ACH_RECEIPT_SETTLED -> Value.ACH_RECEIPT_SETTLED
ACH_RETURN_INITIATED -> Value.ACH_RETURN_INITIATED
ACH_RETURN_PROCESSED -> Value.ACH_RETURN_PROCESSED
AUTHORIZATION -> Value.AUTHORIZATION
AUTHORIZATION_ADVICE -> Value.AUTHORIZATION_ADVICE
AUTHORIZATION_EXPIRY -> Value.AUTHORIZATION_EXPIRY
AUTHORIZATION_REVERSAL -> Value.AUTHORIZATION_REVERSAL
BALANCE_INQUIRY -> Value.BALANCE_INQUIRY
CLEARING -> Value.CLEARING
CORRECTION_CREDIT -> Value.CORRECTION_CREDIT
CORRECTION_DEBIT -> Value.CORRECTION_DEBIT
CREDIT_AUTHORIZATION -> Value.CREDIT_AUTHORIZATION
CREDIT_AUTHORIZATION_ADVICE -> Value.CREDIT_AUTHORIZATION_ADVICE
FINANCIAL_AUTHORIZATION -> Value.FINANCIAL_AUTHORIZATION
FINANCIAL_CREDIT_AUTHORIZATION -> Value.FINANCIAL_CREDIT_AUTHORIZATION
RETURN -> Value.RETURN
RETURN_REVERSAL -> Value.RETURN_REVERSAL
TRANSFER -> Value.TRANSFER
TRANSFER_INSUFFICIENT_FUNDS -> Value.TRANSFER_INSUFFICIENT_FUNDS
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
ACH_ORIGINATION_CANCELLED -> Known.ACH_ORIGINATION_CANCELLED
ACH_ORIGINATION_INITIATED -> Known.ACH_ORIGINATION_INITIATED
ACH_ORIGINATION_PROCESSED -> Known.ACH_ORIGINATION_PROCESSED
ACH_ORIGINATION_SETTLED -> Known.ACH_ORIGINATION_SETTLED
ACH_ORIGINATION_RELEASED -> Known.ACH_ORIGINATION_RELEASED
ACH_ORIGINATION_REVIEWED -> Known.ACH_ORIGINATION_REVIEWED
ACH_RECEIPT_PROCESSED -> Known.ACH_RECEIPT_PROCESSED
ACH_RECEIPT_SETTLED -> Known.ACH_RECEIPT_SETTLED
ACH_RETURN_INITIATED -> Known.ACH_RETURN_INITIATED
ACH_RETURN_PROCESSED -> Known.ACH_RETURN_PROCESSED
AUTHORIZATION -> Known.AUTHORIZATION
AUTHORIZATION_ADVICE -> Known.AUTHORIZATION_ADVICE
AUTHORIZATION_EXPIRY -> Known.AUTHORIZATION_EXPIRY
AUTHORIZATION_REVERSAL -> Known.AUTHORIZATION_REVERSAL
BALANCE_INQUIRY -> Known.BALANCE_INQUIRY
CLEARING -> Known.CLEARING
CORRECTION_CREDIT -> Known.CORRECTION_CREDIT
CORRECTION_DEBIT -> Known.CORRECTION_DEBIT
CREDIT_AUTHORIZATION -> Known.CREDIT_AUTHORIZATION
CREDIT_AUTHORIZATION_ADVICE -> Known.CREDIT_AUTHORIZATION_ADVICE
FINANCIAL_AUTHORIZATION -> Known.FINANCIAL_AUTHORIZATION
FINANCIAL_CREDIT_AUTHORIZATION -> Known.FINANCIAL_CREDIT_AUTHORIZATION
RETURN -> Known.RETURN
RETURN_REVERSAL -> Known.RETURN_REVERSAL
TRANSFER -> Known.TRANSFER
TRANSFER_INSUFFICIENT_FUNDS -> Known.TRANSFER_INSUFFICIENT_FUNDS
else -> throw LithicInvalidDataException("Unknown FinancialEventType: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
}
class Result
@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 Result && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val APPROVED = Result(JsonField.of("APPROVED"))
val DECLINED = Result(JsonField.of("DECLINED"))
fun of(value: String) = Result(JsonField.of(value))
}
enum class Known {
APPROVED,
DECLINED,
}
enum class Value {
APPROVED,
DECLINED,
_UNKNOWN,
}
fun value(): Value =
when (this) {
APPROVED -> Value.APPROVED
DECLINED -> Value.DECLINED
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
APPROVED -> Known.APPROVED
DECLINED -> Known.DECLINED
else -> throw LithicInvalidDataException("Unknown Result: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
class Status
@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 Status && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
val DECLINED = Status(JsonField.of("DECLINED"))
val EXPIRED = Status(JsonField.of("EXPIRED"))
val PENDING = Status(JsonField.of("PENDING"))
val SETTLED = Status(JsonField.of("SETTLED"))
val VOIDED = Status(JsonField.of("VOIDED"))
fun of(value: String) = Status(JsonField.of(value))
}
enum class Known {
DECLINED,
EXPIRED,
PENDING,
SETTLED,
VOIDED,
}
enum class Value {
DECLINED,
EXPIRED,
PENDING,
SETTLED,
VOIDED,
_UNKNOWN,
}
fun value(): Value =
when (this) {
DECLINED -> Value.DECLINED
EXPIRED -> Value.EXPIRED
PENDING -> Value.PENDING
SETTLED -> Value.SETTLED
VOIDED -> Value.VOIDED
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
DECLINED -> Known.DECLINED
EXPIRED -> Known.EXPIRED
PENDING -> Known.PENDING
SETTLED -> Known.SETTLED
VOIDED -> Known.VOIDED
else -> throw LithicInvalidDataException("Unknown Status: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
}