MadelineProtoDocs/old_docs/API_docs_v100/constructors/messageEmpty.md
2019-12-27 17:48:04 +01:00

39 lines
656 B
Markdown

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