Layer 224
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 |
|---|---|---|
| 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: 42, Date: 42, ExpireDate: 42, // Optional fields: // CloseFriends: true, }