Layer 228
StoriesAllStoriesObj
Full list of active (or active and hidden) stories.
constructor
stories.allStories#6efc5e81 flags:# has_more:flags.0?true count:int state:string peer_stories:Vector<PeerStories> chats:Vector<Chat> users:Vector<User> stealth_mode:StoriesStealthMode = stories.AllStories;
Parameters
| Name | Type | Description |
|---|---|---|
| HasMore | flags .0? true | Whether more results can be fetched as described here. |
| Count | int | Total number of active (or active and hidden) stories |
| State | string | State to use for pagination |
| PeerStories | Vector<PeerStories> | Stories |
| Chats | Vector<Chat> | Mentioned chats |
| Users | Vector<User> | Mentioned users |
| StealthMode | StoriesStealthMode | Current stealth mode information |
Returns
stories.AllStoriesGogram Example
// Creating StoriesAllStoriesObj constructor obj := &tg.StoriesAllStoriesObj{ HasMore: nil, Count: 20, State: "example", PeerStories: []tg.PeerStories{&tg.PeerStoriesObj{}}, Chats: []tg.Chat{&tg.ChatObj{}}, Users: []tg.User{&tg.UserObj{}}, // ... more required fields }