TransferCreateRequest constructor

TransferCreateRequest({
  1. String? clientId,
  2. String? secret,
  3. String? idempotencyKey,
  4. String? accessToken,
  5. String? accountId,
  6. String? paymentProfileToken,
  7. required String authorizationId,
  8. TransferType? type,
  9. TransferNetwork? network,
  10. String? amount,
  11. required String description,
  12. ACHClass? achClass,
  13. TransferUserInRequestDeprecated? user,
  14. TransferMetadata? metadata,
  15. String? originationAccountId,
  16. String? isoCurrencyCode,
})

Implementation

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