MadelineProtoDocs/old_docs/API_docs_v81/constructors/botCommand.md

823 B

title description image
botCommand botCommand attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: botCommand

Back to constructors index

Attributes:

Name Type Required
command string Yes
description string Yes

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'}