MadelineProto/docs/TD_docs/constructors/callbackQueryGame.md

45 lines
855 B
Markdown
Raw Normal View History

---
title: callbackQueryGame
description: Payload from a game callback button
---
## Constructor: callbackQueryGame
[Back to constructors index](index.md)
Payload from a game callback button
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|game\_short\_name|[string](../types/string.md) | Yes|Short name of the game that was attached to the callback button|
### Type: [CallbackQueryPayload](../types/CallbackQueryPayload.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$callbackQueryGame = ['_' => 'callbackQueryGame', '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
{"_": "callbackQueryGame", "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
callbackQueryGame={_='callbackQueryGame', game_short_name='string'}
```