Layer 224
constructor
webPageAttributeStory#2e94c3e7 flags:# peer:Peer id:int story:flags.0?StoryItem = WebPageAttribute;

Parameters

Name Type Description
Peer Peer Peer that posted the story
Id int Story ID
Story flags.0?StoryItem May contain the story, if not the story should be fetched when and if needed using stories. get Stories By ID with the above id and peer.

Gogram Example

// Creating WebPageAttributeStory constructor
obj := &tg.WebPageAttributeStory{
    Peer: &tg.Peer{},
    Id: 42,

    // Optional fields:
    // Story: &tg.StoryItem{},
}