1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-14 18:46:58 +01:00
MadelineProto/docs/TD_docs/constructors/messageGame.md

45 lines
655 B
Markdown
Raw Normal View History

---
title: messageGame
description: Message with a game
---
## Constructor: messageGame
[Back to constructors index](index.md)
Message with a game
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|game|[game](../types/game.md) | Yes|The game|
### Type: [MessageContent](../types/MessageContent.md)
### Example:
```
$messageGame = ['_' => 'messageGame', 'game' => game, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"messageGame","game":"game"}
```
Or, if you're into Lua:
```
messageGame={_='messageGame', game=game, }
```