45 lines
786 B
Markdown
45 lines
786 B
Markdown
---
|
|
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];
|
|
```
|
|
|
|
[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}
|
|
|
|
```
|
|
|
|
|