Layer 220
constructor
stories.storyReactionsList#aa5f789c flags:# count:int reactions:Vector<StoryReaction> chats:Vector<Chat> users:Vector<User> next_offset:flags.0?string = stories.StoryReactionsList;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
Count int Total number of reactions matching query
Reactions Vector<StoryReaction> List of peers that reacted to or interacted with a specific story
Chats Vector<Chat> Mentioned chats
Users Vector<User> Mentioned users
NextOffset flags.0?string If set, indicates the next offset to use to load more results by invoking stories. get Story Reactions List.

Gogram Example

// Creating StoriesStoryReactionsList constructor
obj := &tg.StoriesStoryReactionsList{
    Count: 0,
    Reactions: []tg.StoryReaction{&tg.StoryReaction{}},
    Chats: []tg.Chat{&tg.Chat{}},
    Users: []tg.User{&tg.User{}},

    // Optional fields:
    // NextOffset: "...",
}