MadelineProtoDocs/docs/API_docs/constructors/inputBotInlineResultGame.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.2 KiB

title description image
inputBotInlineResultGame Bot inline result game https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputBotInlineResultGame

Back to constructors index

Bot inline result game

Attributes:

Name Type Required Description
id string Yes ID
short_name string Yes Short name
send_message InputBotInlineMessage Yes Message to send

Type: InputBotInlineResult

Example:

$inputBotInlineResultGame = ['_' => 'inputBotInlineResultGame', 'id' => 'string', 'short_name' => 'string', 'send_message' => InputBotInlineMessage];

PWRTelegram json-encoded version:

{"_": "inputBotInlineResultGame", "id": "string", "short_name": "string", "send_message": InputBotInlineMessage}

Or, if you're into Lua:

inputBotInlineResultGame={_='inputBotInlineResultGame', id='string', short_name='string', send_message=InputBotInlineMessage}