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

This object represents one row of the high scores table for a game.

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

- `position`: Position in high score table for the game
- `user`: User
- `score`: Score

# `t`

```elixir
@type t() :: %ExGram.Model.GameHighScore{
  position: integer(),
  score: integer(),
  user: ExGram.Model.User.t()
}
```

# `decode_as`

---

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