1.0 KiB
1.0 KiB
title | description |
---|---|
messageEntityTextUrl | Text description showed instead of the url |
Constructor: messageEntityTextUrl
Text description showed instead of the url
Attributes:
Name | Type | Required | Description |
---|---|---|---|
offset | int | Yes | Offset of the entity in UTF-16 code points |
length | int | Yes | Length of the entity in UTF-16 code points |
url | string | Yes | Url to be opened after link will be clicked |
Type: MessageEntity
Example:
$messageEntityTextUrl = ['_' => 'messageEntityTextUrl', 'offset' => int, 'length' => int, 'url' => 'string'];
PWRTelegram json-encoded version:
{"_": "messageEntityTextUrl", "offset": int, "length": int, "url": "string"}
Or, if you're into Lua:
messageEntityTextUrl={_='messageEntityTextUrl', offset=int, length=int, url='string'}