38 lines
642 B
Markdown
38 lines
642 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, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
textUrl={_='textUrl', text=RichText, url=string, webpage_id=long, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|