mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 11:47:49 +01:00
39 lines
724 B
Markdown
39 lines
724 B
Markdown
---
|
|
title: botCommand
|
|
description: Represents command supported by bot
|
|
---
|
|
## Constructor: botCommand
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Represents command supported by bot
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|:-------------:|:--------:|------------:|
|
|
|command|[string](../types/string.md) | Yes|Text of the bot command|
|
|
|description|[string](../types/string.md) | Yes|Description of the bot command|
|
|
|
|
|
|
|
|
### Type: [BotCommand](../types/BotCommand.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$botCommand = ['_' => 'botCommand', 'command' => string, 'description' => string, ];
|
|
```
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
botCommand={_='botCommand', command=string, description=string, }
|
|
|
|
```
|
|
|
|
|