# `Stripe.Params.PaymentRecordReportPaymentAttemptParams.PaymentMethodDetails`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/payment_record_report_payment_attempt_params.ex#L64)

Nested parameters.

# `t`

```elixir
@type t() ::
  %Stripe.Params.PaymentRecordReportPaymentAttemptParams.PaymentMethodDetails{
    billing_details:
      Stripe.Params.PaymentRecordReportPaymentAttemptParams.PaymentMethodDetails.BillingDetails.t()
      | nil,
    custom:
      Stripe.Params.PaymentRecordReportPaymentAttemptParams.PaymentMethodDetails.Custom.t()
      | nil,
    payment_method: String.t() | nil,
    type: String.t() | nil
  }
```

* `billing_details` - The billing details associated with the method of payment.
* `custom` - Information about the custom (user-defined) payment method used to make this payment.
* `payment_method` - ID of the Stripe Payment Method used to make this payment. Max length: 5000.
* `type` - The type of the payment method details. An additional hash is included on the payment_method_details with a name matching this value. It contains additional information specific to the type. Possible values: `custom`.

---

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