PostInteractionCountersStory

class pyrogram.raw.types.PostInteractionCountersStory

Interaction counters for a story.

Constructor of PostInteractionCounters.

Details:
  • Layer: 223

  • ID: 8A480E27

Parameters:
  • story_id (int 32-bit) – Story ID

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

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

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

TL Schema

postInteractionCountersStory#8a480e27
story_id:int
views:int
forwards:int
reactions:int

= PostInteractionCounters

Parameter Tree

PostInteractionCountersStory
├── story_idint
├── viewsint
├── forwardsint
└── reactionsint

Example

PostInteractionCountersStory(
    story_id=0,
    views=0,
    forwards=0,
    reactions=0,
)