Layer 228
constructor
stories.foundStories#e2de7737 flags:# count:int stories:Vector<FoundStory> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = stories.FoundStories;

Parameters

Name Type Description
Count int Total number of results found for the query.
Stories Vector<FoundStory> Matching stories.
NextOffset flags .0? string Offset used to fetch the next page, if not set this is the final page.
Chats Vector<Chat> Mentioned chats
Users Vector<User> Mentioned users

Gogram Example

// Creating StoriesFoundStoriesObj constructor
obj := &tg.StoriesFoundStoriesObj{
    Count: 20,
    Stories: []tg.FoundStory{&tg.FoundStoryObj{}},
    NextOffset: "example",
    Chats: []tg.Chat{&tg.ChatObj{}},
    Users: []tg.User{&tg.UserObj{}},
}