MadelineProtoDocs/old_docs/API_docs_v105/constructors/chatInviteAlready.md
2019-09-13 17:13:55 +02:00

39 lines
705 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];
```
Or, if you're into Lua:
```lua
chatInviteAlready={_='chatInviteAlready', chat=Chat}
```