mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 21:27:48 +01:00
29 lines
550 B
Markdown
29 lines
550 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) | Required|
|
||
|
|url|[string](../types/string.md) | Required|
|
||
|
|webpage\_id|[long](../types/long.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [RichText](../types/RichText.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$textUrl = ['_' => 'textUrl', 'text' => RichText, 'url' => string, 'webpage_id' => long, ];
|
||
|
```
|
||
|
|