TransferAuthorizationCreateRequest constructor

TransferAuthorizationCreateRequest({
  1. String? clientId,
  2. String? secret,
  3. String? accessToken,
  4. String? accountId,
  5. String? paymentProfileToken,
  6. required TransferType type,
  7. required TransferNetwork network,
  8. required String amount,
  9. ACHClass? achClass,
  10. required TransferAuthorizationUserInRequest user,
  11. TransferAuthorizationDevice? device,
  12. String? originationAccountId,
  13. String? isoCurrencyCode,
  14. String? idempotencyKey,
  15. bool? userPresent,
  16. bool? withGuarantee,
  17. String? beaconSessionId,
  18. String? originatorClientId,
})

Implementation

TransferAuthorizationCreateRequest({
  this.clientId,
  this.secret,
  this.accessToken,
  this.accountId,
  this.paymentProfileToken,
  required this.type,
  required this.network,
  required this.amount,
  this.achClass,
  required this.user,
  this.device,
  this.originationAccountId,
  this.isoCurrencyCode,
  this.idempotencyKey,
  this.userPresent,
  this.withGuarantee,
  this.beaconSessionId,
  this.originatorClientId,
});