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

Represents a reaction added to a message along with the number of times it was added.

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

- `type`: Type of the reaction
- `total_count`: Number of times the reaction was added

# `t`

```elixir
@type t() :: %ExGram.Model.ReactionCount{
  total_count: integer(),
  type: ExGram.Model.ReactionType.t()
}
```

# `decode_as`

---

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