Layer 224
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
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 StoriesStoryReactionsListObj constructor
obj := &tg.StoriesStoryReactionsListObj{
    Count: 42,
    Reactions: []tg.StoryReaction{&tg.StoryReaction{}},
    Chats: []tg.Chat{&tg.Chat{}},
    Users: []tg.User{&tg.User{}},

    // Optional fields:
    // NextOffset: "Hello, World!",
}