mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 13:47:20 +01:00
741 B
741 B
title | description |
---|---|
messageEntityUrl | messageEntityUrl attributes, type and example |
Constructor: messageEntityUrl
Attributes:
Name | Type | Required |
---|---|---|
offset | int | Yes |
length | int | Yes |
Type: MessageEntity
Example:
$messageEntityUrl = ['_' => 'messageEntityUrl', 'offset' => int, 'length' => int, ];
PWRTelegram json-encoded version:
{"_":"messageEntityUrl","offset":"int","length":"int"}
Or, if you're into Lua:
messageEntityUrl={_='messageEntityUrl', offset=int, length=int, }