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

41 lines
935 B
Markdown

---
title: updateDeleteMessages
description: Messages were deleted.
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateDeleteMessages
[Back to constructors index](index.md)
Messages were deleted.
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|messages|Array of [int](../types/int.md) | Yes|Messages|
|pts|[int](../types/int.md) | Yes|New quality of actions in a message box|
|pts\_count|[int](../types/int.md) | Yes|Number of generated [events](https://core.telegram.org/api/updates)|
### Type: [Update](../types/Update.md)
### Example:
```php
$updateDeleteMessages = ['_' => 'updateDeleteMessages', 'messages' => [int, int], 'pts' => int, 'pts_count' => int];
```
Or, if you're into Lua:
```lua
updateDeleteMessages={_='updateDeleteMessages', messages={int}, pts=int, pts_count=int}
```