TransferEvent constructor

TransferEvent({
  1. required int eventId,
  2. required DateTime timestamp,
  3. required TransferEventType eventType,
  4. required String accountId,
  5. required String transferId,
  6. required String? originationAccountId,
  7. required TransferType transferType,
  8. required String transferAmount,
  9. required TransferFailure? failureReason,
  10. required String? sweepId,
  11. required String? sweepAmount,
  12. required String? refundId,
  13. required String? originatorClientId,
})

Implementation

TransferEvent({
  required this.eventId,
  required this.timestamp,
  required this.eventType,
  required this.accountId,
  required this.transferId,
  required this.originationAccountId,
  required this.transferType,
  required this.transferAmount,
  required this.failureReason,
  required this.sweepId,
  required this.sweepAmount,
  required this.refundId,
  required this.originatorClientId,
});