MadelineProto/old_docs/API_docs_v70/constructors/encryptedChatEmpty.md

43 lines
656 B
Markdown

---
title: encryptedChatEmpty
description: encryptedChatEmpty attributes, type and example
---
## Constructor: encryptedChatEmpty
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|id|[int](../types/int.md) | Yes|
### Type: [EncryptedChat](../types/EncryptedChat.md)
### Example:
```
$encryptedChatEmpty = ['_' => 'encryptedChatEmpty', 'id' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "encryptedChatEmpty", "id": int}
```
Or, if you're into Lua:
```
encryptedChatEmpty={_='encryptedChatEmpty', id=int}
```