ProcessorBankTransferCreateRequest constructor

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

Implementation

ProcessorBankTransferCreateRequest({
  this.clientId,
  this.secret,
  required this.idempotencyKey,
  required this.processorToken,
  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,
});