# `ExGram.Model.InputMediaLocation`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.67.0/lib/ex_gram.ex#L6591)

Represents a location to be sent.

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

- `type`: Type of the result, must be location
- `latitude`: Latitude of the location
- `longitude`: Longitude of the location
- `horizontal_accuracy (optional)`: Optional. The radius of uncertainty for the location, measured in meters; 0-1500

# `t`

```elixir
@type t() :: %ExGram.Model.InputMediaLocation{
  horizontal_accuracy: float() | nil,
  latitude: float(),
  longitude: float(),
  type: String.t()
}
```

# `decode_as`

---

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