2017-06-30 15:36:33 +02:00
|
|
|
---
|
|
|
|
title: textUrl
|
|
|
|
description: textUrl attributes, type and example
|
|
|
|
---
|
|
|
|
## 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, ];
|
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_":"textUrl","text":"RichText","url":"string","webpage_id":"long"}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-06-30 15:36:33 +02:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
textUrl={_='textUrl', text=RichText, url=string, webpage_id=long, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|