# `Stripe.Params.Treasury.OutboundPaymentCreateParams.DestinationPaymentMethodData`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/treasury/outbound_payment_create_params.ex#L50)

Nested parameters.

# `t`

```elixir
@type t() ::
  %Stripe.Params.Treasury.OutboundPaymentCreateParams.DestinationPaymentMethodData{
    billing_details:
      Stripe.Params.Treasury.OutboundPaymentCreateParams.DestinationPaymentMethodData.BillingDetails.t()
      | nil,
    financial_account: String.t() | nil,
    metadata: %{required(String.t()) =&gt; String.t()} | nil,
    type: String.t() | nil,
    us_bank_account:
      Stripe.Params.Treasury.OutboundPaymentCreateParams.DestinationPaymentMethodData.UsBankAccount.t()
      | nil
  }
```

* `billing_details` - Billing information associated with the PaymentMethod that may be used or required by particular types of payment methods.
* `financial_account` - Required if type is set to `financial_account`. The FinancialAccount ID to send funds to.
* `metadata` - Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
* `type` - The type of the PaymentMethod. An additional hash is included on the PaymentMethod with a name matching this value. It contains additional information specific to the PaymentMethod type. Possible values: `financial_account`, `us_bank_account`.
* `us_bank_account` - Required hash if type is set to `us_bank_account`.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
