MadelineProto/docs/TD_docs/constructors/updateDeleteMessages.md

39 lines
754 B
Markdown

---
title: updateDeleteMessages
description: Some messages was deleted
---
## Constructor: updateDeleteMessages
[Back to constructors index](index.md)
Some messages was deleted
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|chat\_id|[long](../types/long.md) | Yes|Chat identifier|
|message\_ids|Array of [long](../constructors/long.md) | Yes|Identifiers of deleted message|
### Type: [Update](../types/Update.md)
### Example:
```
$updateDeleteMessages = ['_' => 'updateDeleteMessages', 'chat_id' => long, 'message_ids' => [long], ];
```
Or, if you're into Lua:
```
updateDeleteMessages={_='updateDeleteMessages', chat_id=long, message_ids={long}, }
```