BankDto
data class BankDto(var id: String, var name: String, var clearingNumber: String, var groupName: String? = null, var bic: String? = null, var email: String? = null, var phone: String? = null, var website: String? = null, var address: AddressDto? = null, var logoPath: String? = null)
Details of a bank.
Parameters
id
Unique identifier of a bank
name
Name of the bank
clearingNumber
This is the local country code of the bank (e.g. BLZ for Germany or BC-Number for Switzerland. The clearing number has the same meaning as the BIC, which should be used in the first place.
groupName
If the bank is part of a group, this field represents the name of the group.
bic
Bank Identifier Code (BIC) of the Bank.
email
The main contact e-mail of a bank.
phone
The main contact phone number of a bank.
website
The website of the bank.
address
logoPath
Path to the logo of the bank.