UpdateChannelMessageForwards

class pyrogram.raw.types.UpdateChannelMessageForwards

The forward counter of a message in a channel has changed

Constructor of Update.

Details:
  • Layer: 223

  • ID: D29A27F4

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

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

  • forwards (int 32-bit) – New forward counter

TL Schema

updateChannelMessageForwards#d29a27f4
channel_id:long
id:int
forwards:int

= Update

Parameter Tree

UpdateChannelMessageForwards
├── channel_idlong
├── idint
└── forwardsint

Example

UpdateChannelMessageForwards(
    channel_id=0,
    id=0,
    forwards=0,
)