mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 11:27:52 +01:00
37 lines
642 B
Markdown
37 lines
642 B
Markdown
---
|
|
title: messageEntityUnknown
|
|
description: messageEntityUnknown attributes, type and example
|
|
---
|
|
## Constructor: messageEntityUnknown
|
|
[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:
|
|
|
|
```
|
|
$messageEntityUnknown = ['_' => 'messageEntityUnknown', 'offset' => int, 'length' => int, ];
|
|
```
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
messageEntityUnknown={_='messageEntityUnknown', offset=int, length=int, }
|
|
|
|
```
|
|
|
|
|