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

45 lines
657 B
Markdown

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