1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 05:56:55 +01:00
MadelineProto/docs/TD_docs/constructors/chatInviteLink.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

45 lines
738 B
Markdown

---
title: chatInviteLink
description: Contains chat invite link
---
## Constructor: chatInviteLink
[Back to constructors index](index.md)
Contains chat invite link
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|invite\_link|[string](../types/string.md) | Yes|Chat invite link|
### Type: [ChatInviteLink](../types/ChatInviteLink.md)
### Example:
```
$chatInviteLink = ['_' => 'chatInviteLink', 'invite_link' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "chatInviteLink", "invite_link": "string"}
```
Or, if you're into Lua:
```
chatInviteLink={_='chatInviteLink', invite_link='string'}
```