823 B
823 B
title | description | image |
---|---|---|
botCommand | botCommand attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: botCommand
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'}