MadelineProtoDocs/old_docs/API_docs_v30/constructors/messageEmpty.md

39 lines
656 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
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}
```