RecipientCciBankAccount

data class RecipientCciBankAccount(val id: String?, val accountNumber: String, val accountType: AccountType, val bankName: String?, val bankCode: String?) : RecipientPaymentInstrument

Data class representing a CCI bank account (Peruvian Banking Number) for third party payment.

Constructors

Link copied to clipboard
constructor(accountNumber: String, accountType: AccountType)
constructor(id: String?, accountNumber: String, accountType: AccountType, bankName: String?, bankCode: String?)

Properties

Link copied to clipboard

A bank account number (Código de Cuenta Interbancario), has 20 digits.

Link copied to clipboard

The type of the bank account.

Link copied to clipboard

The bank code it has 3 digits.

Link copied to clipboard

The name of the bank.

Link copied to clipboard
open override val id: String?

The instrument id.

Link copied to clipboard

Represents the type of the recipient instrument.