# `ExGram.Model.MessageReactionCountUpdated`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.64.0/lib/ex_gram.ex#L5404)

This object represents reaction changes on a message with anonymous reactions.

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

- `chat`: The chat containing the message
- `message_id`: Unique message identifier inside the chat
- `date`: Date of the change in Unix time
- `reactions`: List of reactions that are present on the message

# `t`

```elixir
@type t() :: %ExGram.Model.MessageReactionCountUpdated{
  chat: ExGram.Model.Chat.t(),
  date: integer(),
  message_id: integer(),
  reactions: [ExGram.Model.ReactionCount.t()]
}
```

# `decode_as`

---

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