MadelineProto/old_docs/API_docs_v70/constructors/updateChannelMessageViews.md

875 B

title description
updateChannelMessageViews updateChannelMessageViews attributes, type and example

Constructor: updateChannelMessageViews

Back to constructors index

Attributes:

Name Type Required
channel_id int Yes
id int Yes
views int Yes

Type: Update

Example:

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

PWRTelegram json-encoded version:

{"_": "updateChannelMessageViews", "channel_id": int, "id": int, "views": int}

Or, if you're into Lua:

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