TransferEvent constructor
TransferEvent({
- required int eventId,
- required DateTime timestamp,
- required TransferEventType eventType,
- required String accountId,
- required String transferId,
- required String? originationAccountId,
- required TransferType transferType,
- required String transferAmount,
- required TransferFailure? failureReason,
- required String? sweepId,
- required String? sweepAmount,
- required String? refundId,
- 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,
});