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

Represents a Game.

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

- `type`: Type of the result, must be game
- `id`: Unique identifier for this result, 1-64 bytes
- `game_short_name`: Short name of the game
- `reply_markup (optional)`: Optional. Inline keyboard attached to the message

# `t`

```elixir
@type t() :: %ExGram.Model.InlineQueryResultGame{
  game_short_name: String.t(),
  id: String.t(),
  reply_markup: ExGram.Model.InlineKeyboardMarkup.t() | nil,
  type: String.t()
}
```

# `decode_as`

---

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