MadelineProto/old_docs/API_docs_v38/constructors/updateChannelMessageViews.md
2017-07-23 16:11:02 +02:00

878 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, }