PostInteractionCountersMessage
- class pyrogram.raw.types.PostInteractionCountersMessage
Interaction counters for a message.
Constructor of
PostInteractionCounters.- Details:
Layer:
223ID:
E7058E7F
- Parameters:
msg_id (
int32-bit) – Message IDviews (
int32-bit) – Number of viewsforwards (
int32-bit) – Number of forwards to public channelsreactions (
int32-bit) – Number of reactions
TL Schema
postInteractionCountersMessage#e7058e7f
msg_id:int
views:int
forwards:int
reactions:int
= PostInteractionCounters
Parameter Tree
PostInteractionCountersMessage
├── msg_id →
int├── views →
int├── forwards →
int└── reactions →
intExample
PostInteractionCountersMessage(
msg_id=0,
views=0,
forwards=0,
reactions=0,
)