Layer 220
constructor
peerStories#9a35e999 flags:# peer:Peer max_read_id:flags.0?int stories:Vector<StoryItem> = PeerStories;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
Peer Peer The peer
MaxReadId flags.0?int If set, contains the ID of the maximum read story
Stories Vector<StoryItem> Stories

Returns

PeerStories

Gogram Example

// Creating PeerStories constructor
obj := &tg.PeerStories{
    Peer: &tg.Peer{},
    Stories: []tg.StoryItem{&tg.StoryItem{}},

    // Optional fields:
    // MaxReadId: 0,
}