UpdateChannelMessageViews
- class pyrogram.raw.types.UpdateChannelMessageViews
The view counter of a message in a channel has changed
Constructor of
Update.- Details:
Layer:
223ID:
F226AC08
- Parameters:
channel_id (
int64-bit) – Channel IDid (
int32-bit) – ID of the messageviews (
int32-bit) – New view counter
TL Schema
updateChannelMessageViews#f226ac08
channel_id:long
id:int
views:int
= Update
Parameter Tree
UpdateChannelMessageViews
├── channel_id →
long├── id →
int└── views →
intExample
UpdateChannelMessageViews(
channel_id=0,
id=0,
views=0,
)