MadelineProtoDocs/docs/API_docs/constructors/chatInviteAlready.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

45 lines
817 B
Markdown

---
title: chatInviteAlready
description: Invite of a chat of which I am already member
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: chatInviteAlready
[Back to constructors index](index.md)
Invite of a chat of which I am already member
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chat|[Chat](../types/Chat.md) | Optional|Chat|
### Type: [ChatInvite](../types/ChatInvite.md)
### Example:
```php
$chatInviteAlready = ['_' => 'chatInviteAlready', 'chat' => Chat];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "chatInviteAlready", "chat": Chat}
```
Or, if you're into Lua:
```lua
chatInviteAlready={_='chatInviteAlready', chat=Chat}
```