MadelineProto/docs/TD_docs/constructors/botInfo.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

946 B

title description
botInfo Provides information about bot and command supported by him

Constructor: botInfo

Back to constructors index

Provides information about bot and command supported by him

Attributes:

Name Type Required Description
description string Yes Big description shown in user info page
commands Array of botCommand Yes List of commands cupported by bot

Type: BotInfo

Example:

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

PWRTelegram json-encoded version:

{"_": "botInfo", "description": "string", "commands": [botCommand]}

Or, if you're into Lua:

botInfo={_='botInfo', description='string', commands={botCommand}}