MadelineProto/docs/TD_docs/constructors/inputMessageGame.md

46 lines
1018 B
Markdown
Raw Normal View History

---
title: inputMessageGame
description: Message with a game, can't be used in broadcast channels and secret chats
---
## Constructor: inputMessageGame
[Back to constructors index](index.md)
Message with a game, can't be used in broadcast channels and secret chats
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|bot\_user\_id|[int](../types/int.md) | Yes|User identifier of a bot owned the game|
|game\_short\_name|[string](../types/string.md) | Yes|Game short name|
### Type: [InputMessageContent](../types/InputMessageContent.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$inputMessageGame = ['_' => 'inputMessageGame', 'bot_user_id' => int, 'game_short_name' => 'string'];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "inputMessageGame", "bot_user_id": int, "game_short_name": "string"}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
inputMessageGame={_='inputMessageGame', bot_user_id=int, game_short_name='string'}
```