UpdateChannelMessageViews

class pyrogram.raw.types.UpdateChannelMessageViews

The view counter of a message in a channel has changed

Constructor of Update.

Details:
  • Layer: 223

  • ID: F226AC08

Parameters:
  • channel_id (int 64-bit) – Channel ID

  • id (int 32-bit) – ID of the message

  • views (int 32-bit) – New view counter

TL Schema

updateChannelMessageViews#f226ac08
channel_id:long
id:int
views:int

= Update

Parameter Tree

UpdateChannelMessageViews
├── channel_idlong
├── idint
└── viewsint

Example

UpdateChannelMessageViews(
    channel_id=0,
    id=0,
    views=0,
)