OutboundPaymentDestinationPaymentMethodData constructor

const OutboundPaymentDestinationPaymentMethodData({
  1. PaymentIntentBillingDetails? billingDetails,
  2. String? financialAccount,
  3. Map<String, String>? metadata,
  4. required OutboundPaymentsPaymentMethodDetailsType type,
  5. PaymentIntentUsBankAccount? usBankAccount,
})

payment_method_data

Hash used to generate the PaymentMethod to be used for this OutboundPayment. Exclusive with `destination_payment_method`.

Implementation

const OutboundPaymentDestinationPaymentMethodData({
  this.billingDetails,
  this.financialAccount,
  this.metadata,
  required this.type,
  this.usBankAccount,
});