812 B
812 B
title | description | image |
---|---|---|
botInfo | Bot info | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: botInfo
Bot info
Attributes:
Name | Type | Required | Description |
---|---|---|---|
user_id | int | Yes | User ID |
description | string | Yes | Description |
commands | Array of BotCommand | Yes | Commands |
Type: BotInfo
Example:
$botInfo = ['_' => 'botInfo', 'user_id' => int, 'description' => 'string', 'commands' => [BotCommand, BotCommand]];
Or, if you're into Lua:
botInfo={_='botInfo', user_id=int, description='string', commands={BotCommand}}