# `ExGram.Model.LocationAddress`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.65.0/lib/ex_gram.ex#L5421)

Describes the physical address of a location.

Check the [documentation of this model on Telegram Bot API](https://core.telegram.org/bots/api#locationaddress)

- `country_code`: The two-letter ISO 3166-1 alpha-2 country code of the country where the location is located
- `state (optional)`: Optional. State of the location
- `city (optional)`: Optional. City of the location
- `street (optional)`: Optional. Street address of the location

# `t`

```elixir
@type t() :: %ExGram.Model.LocationAddress{
  city: String.t() | nil,
  country_code: String.t(),
  state: String.t() | nil,
  street: String.t() | nil
}
```

# `decode_as`

---

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