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

Describes a story area containing weather information. Currently, a story can have up to 3 weather areas.

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

- `type`: Type of the area, always "weather”
- `temperature`: Temperature, in degree Celsius
- `emoji`: Emoji representing the weather
- `background_color`: A color of the area background in the ARGB format

# `t`

```elixir
@type t() :: %ExGram.Model.StoryAreaTypeWeather{
  background_color: integer(),
  emoji: String.t(),
  temperature: float(),
  type: String.t()
}
```

# `decode_as`

---

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