Layer 220
constructor
stories.storyViewsList#59d78fc5 flags:# count:int views_count:int forwards_count:int reactions_count:int views:Vector<StoryView> chats:Vector<Chat> users:Vector<User> next_offset:flags.0?string = stories.StoryViewsList;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
Count int Total number of results that can be fetched
ViewsCount int Total number of story views
ForwardsCount int Total number of story forwards/reposts
ReactionsCount int Number of reactions that were added to the story
Views Vector<StoryView> Story view date and reaction information
Chats Vector<Chat> Mentioned chats
Users Vector<User> Mentioned users
NextOffset flags.0?string Offset for pagination

Gogram Example

// Creating StoriesStoryViewsList constructor
obj := &tg.StoriesStoryViewsList{
    Count: 0,
    ViewsCount: 0,
    ForwardsCount: 0,
    ReactionsCount: 0,
    Views: []tg.StoryView{&tg.StoryView{}},
    Chats: []tg.Chat{&tg.Chat{}},
    // ... more required fields

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