# `Stripe.Resources.Charge.BillingDetails`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/charge.ex#L196)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Charge.BillingDetails{
  address: Stripe.Resources.Address.t() | nil,
  email: String.t() | nil,
  name: String.t() | nil,
  phone: String.t() | nil,
  tax_id: String.t() | nil
}
```

* `address` - Billing address. Nullable.
* `email` - Email address. Max length: 5000. Nullable.
* `name` - Full name. Max length: 5000. Nullable.
* `phone` - Billing phone number (including extension). Max length: 5000. Nullable.
* `tax_id` - Taxpayer identification number. Used only for transactions between LATAM buyers and non-LATAM sellers. Max length: 5000. Nullable.

---

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