Layer 227
constructor
storyItemSkipped#ffadc913 flags:# close_friends:flags.8?true live:flags.9?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
Live flags .9? true Whether this story is a live video stream.
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{
    CloseFriends: nil,
    Live: nil,
    Id: 42,
    Date: 42,
    ExpireDate: 42,
}