StoryView

class pyrogram.raw.base.StoryView

Story view date and reaction information

Constructors:

This base type has 3 constructors available.

StoryView

Story view date and reaction information

StoryViewPublicForward

A certain peer has forwarded the story as a message to a public chat or channel.

StoryViewPublicRepost

A certain peer has reposted the story.

TL Schema

storyView#b0bdeac5
flags:#
blocked:flags.0?true
blocked_my_stories_from:flags.1?true
user_id:long
date:int
reaction:flags.2?Reaction

= StoryView

Parameter Tree

StoryView
├── blocked → true (optional)
├── blocked_my_stories_from → true (optional)
├── user_id → long
├── date → int
└── reaction → Reaction (optional)
├── ReactionEmpty
├── ReactionEmoji
│ └── emoticon → string
│ └── document_id → long
└── ReactionPaid

Example

StoryView(
    blocked=None,
    blocked_my_stories_from=None,
    user_id=0,
    date=0,
    reaction=ReactionEmpty(),
)