TreasuryOutboundPaymentCreateOptions constructor

const TreasuryOutboundPaymentCreateOptions({
  1. required int amount,
  2. required String currency,
  3. String? customer,
  4. String? description,
  5. String? destinationPaymentMethod,
  6. OutboundPaymentDestinationPaymentMethodData? destinationPaymentMethodData,
  7. OutboundPaymentDestinationPaymentMethodOptions? destinationPaymentMethodOptions,
  8. OutboundPaymentEndUserDetails? endUserDetails,
  9. List<String>? expand,
  10. required String financialAccount,
  11. Map<String, String>? metadata,
  12. String? statementDescriptor,
})

Implementation

const TreasuryOutboundPaymentCreateOptions({
  required this.amount,
  required this.currency,
  this.customer,
  this.description,
  this.destinationPaymentMethod,
  this.destinationPaymentMethodData,
  this.destinationPaymentMethodOptions,
  this.endUserDetails,
  this.expand,
  required this.financialAccount,
  this.metadata,
  this.statementDescriptor,
});