2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: textUrl
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Link
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: textUrl
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Link
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|text|[RichText](../types/RichText.md) | Yes|Text of link|
|
|
|
|
|url|[string](../types/string.md) | Yes|Webpage HTTP URL|
|
|
|
|
|webpage\_id|[long](../types/long.md) | Yes|If a preview was already generated for the page, the page ID|
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [RichText](../types/RichText.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$textUrl = ['_' => 'textUrl', 'text' => RichText, 'url' => 'string', 'webpage_id' => long];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
textUrl={_='textUrl', text=RichText, url='string', webpage_id=long}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|