RecipientSepaBankAccount

data class RecipientSepaBankAccount(val id: String?, val accountHolderName: String?, val iban: String, val bic: String, val bankName: String?) : RecipientPaymentInstrument

Data class representing SEPA Bank Account for third party payment.

Constructors

Link copied to clipboard
constructor(accountHolderName: String?, iban: String, bic: String)
constructor(id: String?, accountHolderName: String?, iban: String, bic: String, bankName: String?)

Properties

Link copied to clipboard

This is the name of the customer or company that owns the bank account.

Link copied to clipboard

Bank name.

Link copied to clipboard
val bic: String

The Bank Account Bank Identifier Code (BIC) code. Also known as SWIFT code.

Link copied to clipboard

The International Bank Account Number (IBAN) of the account.

Link copied to clipboard
open override val id: String?

The instrument id.

Link copied to clipboard

Represents the type of the recipient instrument.