AccountDataRequestDto
data class AccountDataRequestDto(var accountName: String? = null, var accountIBAN: String? = null, var accountNumber: String? = null, var accountDescription: String? = null, var accountType: MutableList<AccountTypeEnumDto>? = null, var accountTypeDescription: String? = null, var customerId: String? = null, var accountHolder: String? = null, var accountStatus: ActiveEnumDto? = null, var accountCurrency: CurrencyDto? = null, var bankId: String? = null, var internalAccount: Boolean? = null, var favoriteAccount: Boolean? = null, var accountIsoCurrency: IsoCurrencyEnumDto? = null)
Request object for account data search
Parameters
accountName
Name of the account. This can be a user-assigned name of the account, but also the default Bank name.
accountIBAN
IBAN of the account.
accountNumber
The account number of the account. *To cover all possible values, this field is a string. In most cases the result will be a number.
accountDescription
Description of the account. Usually has the same value as accountTypeDescription.
accountType
accountTypeDescription
Description or name of the account type.
customerId
Customer ID of the account holder.
accountHolder
Name of the account holder.
accountStatus
accountCurrency
bankId
ID of the Bank where the account is held.
internalAccount
If an account is an internal shadow account, this value is true. Otherwise it is false.
favoriteAccount
If a user has set the account as a favorite, the value is true. Otherwise it is false.
accountIsoCurrency
Constructors
Link copied to clipboard
constructor(accountName: String? = null, accountIBAN: String? = null, accountNumber: String? = null, accountDescription: String? = null, accountType: MutableList<AccountTypeEnumDto>? = null, accountTypeDescription: String? = null, customerId: String? = null, accountHolder: String? = null, accountStatus: ActiveEnumDto? = null, accountCurrency: CurrencyDto? = null, bankId: String? = null, internalAccount: Boolean? = null, favoriteAccount: Boolean? = null, accountIsoCurrency: IsoCurrencyEnumDto? = null)
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard