Layer 228
StoriesStoryReactionsListObj
List of peers that reacted to or intercated with a specific story
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. |
Returns
stories.StoryReactionsListGogram Example
// Creating StoriesStoryReactionsListObj constructor obj := &tg.StoriesStoryReactionsListObj{ Count: 20, Reactions: []tg.StoryReaction{&tg.StoryReactionObj{}}, Chats: []tg.Chat{&tg.ChatObj{}}, Users: []tg.User{&tg.UserObj{}}, NextOffset: "example", }