Layer 220
StoryViewPublicRepost
A certain peer has reposted the story.
constructor
storyViewPublicRepost#bd74cf49 flags:# blocked:flags.0?true blocked_my_stories_from:flags.1?true peer_id:Peer story:StoryItem = StoryView;
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| Blocked | flags.0?true | Whether we have completely blocked this user, including from viewing more of our stories. |
| BlockedMyStoriesFrom | flags.1?true | Whether we have blocked this user from viewing more of our stories. |
| PeerId | Peer | The peer that reposted the story. |
| Story | StoryItem | The reposted story. |
Returns
StoryViewGogram Example
// Creating StoryViewPublicRepost constructor obj := &tg.StoryViewPublicRepost{ PeerId: &tg.Peer{}, Story: &tg.StoryItem{}, // Optional fields: // Blocked: true, // BlockedMyStoriesFrom: true, }