Layer 220
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
Flags # Flags, see TL conditional fields
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 StoriesFoundStories constructor
obj := &tg.StoriesFoundStories{
    Count: 0,
    Stories: []tg.FoundStory{&tg.FoundStory{}},
    Chats: []tg.Chat{&tg.Chat{}},
    Users: []tg.User{&tg.User{}},

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