TransferIntentCreateRequest constructor

TransferIntentCreateRequest({
  1. String? clientId,
  2. String? secret,
  3. String? accountId,
  4. required TransferIntentCreateMode mode,
  5. required String amount,
  6. required String description,
  7. ACHClass? achClass,
  8. String? originationAccountId,
  9. required TransferUserInRequest user,
  10. TransferMetadata? metadata,
  11. String? isoCurrencyCode,
  12. bool? requireGuarantee,
})

Implementation

TransferIntentCreateRequest({
  this.clientId,
  this.secret,
  this.accountId,
  required this.mode,
  required this.amount,
  required this.description,
  this.achClass,
  this.originationAccountId,
  required this.user,
  this.metadata,
  this.isoCurrencyCode,
  this.requireGuarantee,
});