MadelineProtoDocs/old_docs/API_docs_v41/constructors/chatEmpty.md

39 lines
626 B
Markdown

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