Layer 220
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

StoryItem

Gogram Example

// Creating StoryItemSkipped constructor
obj := &tg.StoryItemSkipped{
    Id: 0,
    Date: 0,
    ExpireDate: 0,

    // Optional fields:
    // CloseFriends: true,
}