Account

data class Account(val currencyCode: String, val id: String, val customerId: String?, val externalId: String?, val totalBalance: Long?, val availableBalance: Long?, val instruments: List<PaymentInstrument>, val creationTime: Calendar?)

Data class representing an account.

Constructors

Link copied to clipboard
constructor(currencyCode: String, id: String, customerId: String?, externalId: String?, totalBalance: Long?, availableBalance: Long?, instruments: List<PaymentInstrument>, creationTime: Calendar?)

Properties

Link copied to clipboard

The available balance amount in minor units.

Link copied to clipboard

The time when the account was created in the form of Calendar.

Link copied to clipboard

Currency alphabetic code as specified by ISO 4217.

Link copied to clipboard

Paysafe embedded wallet internal customer identifier.

Link copied to clipboard

External identifier in merchant system. Must be passed during onboarding.

Link copied to clipboard
val id: String

The account id.

Link copied to clipboard

List of PaymentInstrument's associated with this account, provided by Paysafe. This list might include virtual bank accounts or pre-paid cards funded by the account.

Link copied to clipboard

The total balance amount in minor units.