BankTransferEvent constructor

BankTransferEvent({
  1. int? eventId,
  2. String? timestamp,
  3. BankTransferEventType? eventType,
  4. String? accountId,
  5. String? bankTransferId,
  6. String? originationAccountId,
  7. BankTransferType? bankTransferType,
  8. String? bankTransferAmount,
  9. String? bankTransferIsoCurrencyCode,
  10. BankTransferFailure? failureReason,
  11. BankTransferDirection? direction,
  12. BankTransferReceiverDetails? receiverDetails,
})

Implementation

BankTransferEvent({
  this.eventId,
  this.timestamp,
  this.eventType,
  this.accountId,
  this.bankTransferId,
  this.originationAccountId,
  this.bankTransferType,
  this.bankTransferAmount,
  this.bankTransferIsoCurrencyCode,
  this.failureReason,
  this.direction,
  this.receiverDetails,
});