MadelineProtoDocs/docs/API_docs/constructors/updateDeleteChannelMessages.md

1.2 KiB

title description image
updateDeleteChannelMessages Some messages in a [supergroup/channel](https://core.telegram.org/api/channel) were deleted https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateDeleteChannelMessages

Back to constructors index

Some messages in a supergroup/channel were deleted

Attributes:

Name Type Required Description
channel_id int Yes Channel ID
messages Array of int Yes Messages
pts int Yes Event count after generation
pts_count int Yes Number of events that were generated

Type: Update

Example:

$updateDeleteChannelMessages = ['_' => 'updateDeleteChannelMessages', 'channel_id' => int, 'messages' => [int, int], 'pts' => int, 'pts_count' => int];

Or, if you're into Lua:

updateDeleteChannelMessages={_='updateDeleteChannelMessages', channel_id=int, messages={int}, pts=int, pts_count=int}