MadelineProtoDocs/old_docs/API_docs_v14/constructors/updateChannelMessageViews.md

931 B

title description image
updateChannelMessageViews The view counter of a message in a channel has changed https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateChannelMessageViews

Back to constructors index

The view counter of a message in a channel has changed

Attributes:

Name Type Required Description
channel_id int Yes Channel ID
id int Yes ID of the message
views int Yes New view counter

Type: Update

Example:

$updateChannelMessageViews = ['_' => 'updateChannelMessageViews', 'channel_id' => int, 'id' => int, 'views' => int];

Or, if you're into Lua:

updateChannelMessageViews={_='updateChannelMessageViews', channel_id=int, id=int, views=int}