mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 15:46:55 +01:00
39 lines
754 B
Markdown
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}, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|