MadelineProtoDocs/old_docs/API_docs_v81/constructors/textUrl.md
2018-07-12 20:24:55 +02:00

46 lines
859 B
Markdown

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