Layer 224
StoriesFoundStoriesObj
Stories found using global story search.
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 |
Returns
stories.FoundStoriesGogram Example
// Creating StoriesFoundStoriesObj constructor obj := &tg.StoriesFoundStoriesObj{ Count: 42, Stories: []tg.FoundStory{&tg.FoundStory{}}, Chats: []tg.Chat{&tg.Chat{}}, Users: []tg.User{&tg.User{}}, // Optional fields: // NextOffset: "Hello, World!", }