Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
data class Transaction(val id: String, val type: TransactionType, val amount: Int, val created: String, val source: TransactionSource?, val paymentMethodId: String?, val reason: String?, val from: String, val to: String, val metadata: JsonObject, val label: String?, val displayName: String, val isCredit: Boolean?)

A Transaction represents the public information available for an Ansa transaction. All movements of money through our closed-loop system will have a corresponding transaction, such as for each Add Balance, Use Balance, or Fund Balance request.

Link copied to clipboard
data class TransactionResult(val nextCursor: String? = null, val transactions: List<Transaction>)

Result container for Transaction that also include the nextCursor

Link copied to clipboard
sealed class TransactionSource

The source of the Transaction

Link copied to clipboard
sealed class TransactionType

The type of Transaction