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