1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 14:34:39 +01:00
MadelineProto/old_docs/API_docs_v40/constructors/botInfo.md

846 B

title description
botInfo botInfo attributes, type and example

Constructor: botInfo

Back to constructors index

Attributes:

Name Type Required
user_id int Yes
version int Yes
share_text string Yes
description string Yes
commands Array of BotCommand Yes

Type: BotInfo

Example:

$botInfo = ['_' => 'botInfo', 'user_id' => int, 'version' => int, 'share_text' => string, 'description' => string, 'commands' => [BotCommand], ];

Or, if you're into Lua:

botInfo={_='botInfo', user_id=int, version=int, share_text=string, description=string, commands={BotCommand}, }