MadelineProtoDocs/old_docs/API_docs_v103/constructors/exportedMessageLink.md
2019-08-15 20:25:16 +02:00

40 lines
774 B
Markdown

---
title: exportedMessageLink
description: Exported message link
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: exportedMessageLink
[Back to constructors index](index.md)
Exported message link
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|link|[string](../types/string.md) | Yes|Link|
|html|[string](../types/string.md) | Yes|Html|
### Type: [ExportedMessageLink](../types/ExportedMessageLink.md)
### Example:
```php
$exportedMessageLink = ['_' => 'exportedMessageLink', 'link' => 'string', 'html' => 'string'];
```
Or, if you're into Lua:
```lua
exportedMessageLink={_='exportedMessageLink', link='string', html='string'}
```