--- 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} ```