TreasuryInboundTransferCreateOptions constructor

const TreasuryInboundTransferCreateOptions({
  1. required int amount,
  2. required String currency,
  3. String? description,
  4. List<String>? expand,
  5. required String financialAccount,
  6. Map<String, String>? metadata,
  7. required String originPaymentMethod,
  8. String? statementDescriptor,
})

Implementation

const TreasuryInboundTransferCreateOptions({
  required this.amount,
  required this.currency,
  this.description,
  this.expand,
  required this.financialAccount,
  this.metadata,
  required this.originPaymentMethod,
  this.statementDescriptor,
});