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

727 B

title description
callbackQueryGame Payload from a game callback button

Constructor: callbackQueryGame

Back to constructors index

Payload from a game callback button

Attributes:

Name Type Required Description
game_short_name string Yes Short name of the game that was attached to the callback button

Type: CallbackQueryPayload

Example:

$callbackQueryGame = ['_' => 'callbackQueryGame', 'game_short_name' => string, ];

Or, if you're into Lua:

callbackQueryGame={_='callbackQueryGame', game_short_name=string, }