2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: botInfo
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Info about bots (available bot commands, etc)
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: botInfo
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Info about bots (available bot commands, etc)
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|user\_id|[int](../types/int.md) | Yes|ID of the bot|
|
|
|
|
|description|[string](../types/string.md) | Yes|Description of the bot|
|
2019-03-29 21:12:30 +01:00
|
|
|
|commands|Array of [BotCommand](../types/BotCommand.md) | Yes|Commands|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [BotInfo](../types/BotInfo.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$botInfo = ['_' => 'botInfo', 'user_id' => int, 'description' => 'string', 'commands' => [BotCommand, BotCommand]];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
botInfo={_='botInfo', user_id=int, description='string', commands={BotCommand}}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|