47 lines
967 B
Markdown
47 lines
967 B
Markdown
|
---
|
||
|
title: botInfo
|
||
|
description: Bot info
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: botInfo
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Bot info
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|user\_id|[int](../types/int.md) | Yes|User ID|
|
||
|
|description|[string](../types/string.md) | Yes|Description|
|
||
|
|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]];
|
||
|
```
|
||
|
|
||
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
||
|
|
||
|
```
|
||
|
{"_": "botInfo", "user_id": int, "description": "string", "commands": [BotCommand]}
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
botInfo={_='botInfo', user_id=int, description='string', commands={BotCommand}}
|
||
|
|
||
|
```
|
||
|
|
||
|
|