PostInteractionCountersMessage

class pyrogram.raw.types.PostInteractionCountersMessage

Interaction counters for a message.

Constructor of PostInteractionCounters.

Details:
  • Layer: 223

  • ID: E7058E7F

Parameters:
  • msg_id (int 32-bit) – Message ID

  • views (int 32-bit) – Number of views

  • forwards (int 32-bit) – Number of forwards to public channels

  • reactions (int 32-bit) – Number of reactions

TL Schema

postInteractionCountersMessage#e7058e7f
msg_id:int
views:int
forwards:int
reactions:int

= PostInteractionCounters

Parameter Tree

PostInteractionCountersMessage
├── msg_idint
├── viewsint
├── forwardsint
└── reactionsint

Example

PostInteractionCountersMessage(
    msg_id=0,
    views=0,
    forwards=0,
    reactions=0,
)