Layer 220
StoryItemSkipped
Represents an active story, whose full information was omitted for space and performance reasons; use stories. get Stories By ID to fetch full info about the skipped story when and if needed.
constructor
storyItemSkipped#ffadc913 flags:# close_friends:flags.8?true id:int date:int expire_date:int = StoryItem;
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| CloseFriends | flags.8?true | Whether this story can only be viewed by our close friends, see here for more info |
| Id | int | Story ID |
| Date | int | When was the story posted. |
| ExpireDate | int | When does the story expire. |
Returns
StoryItemGogram Example
// Creating StoryItemSkipped constructor obj := &tg.StoryItemSkipped{ Id: 0, Date: 0, ExpireDate: 0, // Optional fields: // CloseFriends: true, }