Layer 220
constructor
postInteractionCountersStory#8a480e27 story_id:int views:int forwards:int reactions:int = PostInteractionCounters;

Parameters

Name Type Description
StoryId int Story ID
Views int Number of views
Forwards int Number of forwards and reposts to public chats and channels
Reactions int Number of reactions

Gogram Example

// Creating PostInteractionCountersStory constructor
obj := &tg.PostInteractionCountersStory{
    StoryId: 0,
    Views: 0,
    Forwards: 0,
    Reactions: 0,
}