--- title: chatInvite description: Chat invite image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: chatInvite [Back to constructors index](index.md) Chat invite ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |title|[string](../types/string.md) | Yes|Title| ### Type: [ChatInvite](../types/ChatInvite.md) ### Example: ```php $chatInvite = ['_' => 'chatInvite', 'title' => 'string']; ``` Or, if you're into Lua: ```lua chatInvite={_='chatInvite', title='string'} ```