2017-03-11 19:54:51 +01:00
|
|
|
---
|
|
|
|
title: messageEntityTextUrl
|
|
|
|
description: Text description showed instead of the url
|
|
|
|
---
|
|
|
|
## Constructor: messageEntityTextUrl
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Text description showed instead of the url
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|:-------------:|:--------:|------------:|
|
|
|
|
|offset|[int](../types/int.md) | Yes|Offset of the entity in UTF-16 code points|
|
|
|
|
|length|[int](../types/int.md) | Yes|Length of the entity in UTF-16 code points|
|
|
|
|
|url|[string](../types/string.md) | Yes|Url to be opened after link will be clicked|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [MessageEntity](../types/MessageEntity.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$messageEntityTextUrl = ['_' => 'messageEntityTextUrl', 'offset' => int, 'length' => int, 'url' => string, ];
|
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_":"messageEntityTextUrl","offset":"int","length":"int","url":"string"}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
messageEntityTextUrl={_='messageEntityTextUrl', offset=int, length=int, url=string, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|