BankTransfer constructor

BankTransfer({
  1. String? id,
  2. ACHClass? achClass,
  3. String? accountId,
  4. BankTransferType? type,
  5. BankTransferUser? user,
  6. String? amount,
  7. String? isoCurrencyCode,
  8. String? description,
  9. String? created,
  10. BankTransferStatus? status,
  11. BankTransferNetwork? network,
  12. bool? cancellable,
  13. BankTransferFailure? failureReason,
  14. String? customTag,
  15. BankTransferMetadata? metadata,
  16. String? originationAccountId,
  17. BankTransferDirection? direction,
})

Implementation

BankTransfer({
  this.id,
  this.achClass,
  this.accountId,
  this.type,
  this.user,
  this.amount,
  this.isoCurrencyCode,
  this.description,
  this.created,
  this.status,
  this.network,
  this.cancellable,
  this.failureReason,
  this.customTag,
  this.metadata,
  this.originationAccountId,
  this.direction,
});