createSepaDebitParams

fun createSepaDebitParams(name: String, iban: String, addressLine1: String?, city: String, postalCode: String, @Size(value = 2) country: String): SourceParams

Create SEPA Debit Source params.

Return

a SourceParams object that can be used to create a SEPA debit source

Parameters

name

The full name of the account holder.

iban

The IBAN number for the bank account that you wish to debit.

addressLine1

The first line of the owner's address (optional).

city

The city of the owner's address.

postalCode

The postal code of the owner's address.

country

The ISO-3166 2-letter country code of the owner's address.

See also


fun createSepaDebitParams(name: String, iban: String, email: String?, addressLine1: String?, city: String?, postalCode: String?, @Size(value = 2) country: String?): SourceParams

Create SEPA Debit Source params.

Return

a SourceParams object that can be used to create a SEPA debit source

Parameters

name

The full name of the account holder.

iban

The IBAN number for the bank account that you wish to debit.

email

The full email address of the owner (optional).

addressLine1

The first line of the owner's address (optional).

city

The city of the owner's address.

postalCode

The postal code of the owner's address.

country

The ISO-3166 2-letter country code of the owner's address.

See also