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
├── blockedtrue (optional)
├── blocked_my_stories_fromtrue (optional)
├── user_idlong
├── dateint
└── reactionReaction (optional)
├── ReactionEmpty
├── ReactionEmoji
│ └── emoticonstring
│ └── document_idlong
└── ReactionPaid

Example

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