# `Stripe.Params.AccountUpdateParams.Individual.Address`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/account_update_params.ex#L1586)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.AccountUpdateParams.Individual.Address{
  city: String.t() | nil,
  country: String.t() | nil,
  line1: String.t() | nil,
  line2: String.t() | nil,
  postal_code: String.t() | nil,
  state: String.t() | nil
}
```

* `city` - City, district, suburb, town, or village. Max length: 100.
* `country` - Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)). Max length: 5000.
* `line1` - Address line 1, such as the street, PO Box, or company name. Max length: 200.
* `line2` - Address line 2, such as the apartment, suite, unit, or building. Max length: 200.
* `postal_code` - ZIP or postal code. Max length: 5000.
* `state` - State, county, province, or region ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)). Max length: 5000.

---

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