PaymentSearchRequestDto
data class PaymentSearchRequestDto(var accountId: String? = null, var paymentType: PaymentTypeEnumDto? = null, var purpose: String? = null, var counterpartName: String? = null, var paymentStatus: PaymentStatusEnumDto? = null)
Filter for Payments search. If an empty object is specified, all payments of the customer will be returned.
Parameters
accountId
Account ID of the sender checking account.
paymentType
purpose
Intended use for the search. Can contain only parts of the purpose.
counterpartName
Name (or part) of the counterpart.
paymentStatus
Constructors
Link copied to clipboard
constructor(accountId: String? = null, paymentType: PaymentTypeEnumDto? = null, purpose: String? = null, counterpartName: String? = null, paymentStatus: PaymentStatusEnumDto? = null)