MadelineProtoDocs/docs/API_docs/constructors/chatInviteExported.md
2018-04-04 19:52:48 +02:00

44 lines
769 B
Markdown

---
title: chatInviteExported
description: chatInviteExported attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
## Constructor: chatInviteExported
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|link|[string](../types/string.md) | Yes|
### Type: [ExportedChatInvite](../types/ExportedChatInvite.md)
### Example:
```
$chatInviteExported = ['_' => 'chatInviteExported', 'link' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "chatInviteExported", "link": "string"}
```
Or, if you're into Lua:
```
chatInviteExported={_='chatInviteExported', link='string'}
```