MadelineProtoDocs/docs/API_docs/constructors/botCommand.md
2018-04-01 13:24:46 +02:00

866 B

title description
botCommand Represents command supported by bot

Constructor: botCommand

Back to constructors index

Represents command supported by bot

Attributes:

Name Type Required Description
command string Yes Text of the bot command
description string Yes Description of the bot command

Type: BotCommand

Example:

$botCommand = ['_' => 'botCommand', 'command' => 'string', 'description' => 'string'];

PWRTelegram json-encoded version:

{"_": "botCommand", "command": "string", "description": "string"}

Or, if you're into Lua:

botCommand={_='botCommand', command='string', description='string'}