MadelineProtoDocs/docs/API_docs/constructors/messageEntityPre.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

46 lines
922 B
Markdown

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