MadelineProto/old_docs/API_docs_v68/constructors/messageEntityBotCommand.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

44 lines
794 B
Markdown

---
title: messageEntityBotCommand
description: messageEntityBotCommand attributes, type and example
---
## Constructor: messageEntityBotCommand
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|offset|[int](../types/int.md) | Yes|
|length|[int](../types/int.md) | Yes|
### Type: [MessageEntity](../types/MessageEntity.md)
### Example:
```
$messageEntityBotCommand = ['_' => 'messageEntityBotCommand', 'offset' => int, 'length' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "messageEntityBotCommand", "offset": int, "length": int}
```
Or, if you're into Lua:
```
messageEntityBotCommand={_='messageEntityBotCommand', offset=int, length=int}
```