BankTransferCreateRequest constructor

BankTransferCreateRequest({
  1. String? clientId,
  2. String? secret,
  3. required String idempotencyKey,
  4. required String accessToken,
  5. required String accountId,
  6. required BankTransferType type,
  7. required BankTransferNetwork network,
  8. required String amount,
  9. required String isoCurrencyCode,
  10. required String description,
  11. ACHClass? achClass,
  12. required BankTransferUser user,
  13. String? customTag,
  14. BankTransferMetadata? metadata,
  15. String? originationAccountId,
})

Implementation

BankTransferCreateRequest({
  this.clientId,
  this.secret,
  required this.idempotencyKey,
  required this.accessToken,
  required this.accountId,
  required this.type,
  required this.network,
  required this.amount,
  required this.isoCurrencyCode,
  required this.description,
  this.achClass,
  required this.user,
  this.customTag,
  this.metadata,
  this.originationAccountId,
});