2018-12-26 02:56:50 +01:00
|
|
|
---
|
|
|
|
title: chatInviteExported
|
|
|
|
description: Exported chat invite
|
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: chatInviteExported
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Exported chat invite
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|link|[string](../types/string.md) | Yes|Chat invitation link|
|
2018-12-26 02:56:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [ExportedChatInvite](../types/ExportedChatInvite.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$chatInviteExported = ['_' => 'chatInviteExported', 'link' => 'string'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
chatInviteExported={_='chatInviteExported', link='string'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|