2019-09-13 17:13:55 +02:00
|
|
|
---
|
|
|
|
title: botCommand
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Describes a bot command that can be used in a chat
|
2019-09-13 17:13:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: botCommand
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Describes a bot command that can be used in a chat
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|command|[string](../types/string.md) | Yes|`/command` name|
|
|
|
|
|description|[string](../types/string.md) | Yes|Description of the command|
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [BotCommand](../types/BotCommand.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$botCommand = ['_' => 'botCommand', 'command' => 'string', 'description' => 'string'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
botCommand={_='botCommand', command='string', description='string'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|