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

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.PaymentRecordReportPaymentParams.PaymentMethodDetails{
  billing_details:
    Stripe.Params.PaymentRecordReportPaymentParams.PaymentMethodDetails.BillingDetails.t()
    | nil,
  custom:
    Stripe.Params.PaymentRecordReportPaymentParams.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*
