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

45 lines
719 B
Markdown

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