StoryReaction

class pyrogram.raw.base.StoryReaction

How a certain peer reacted to or interacted with a story

Constructors:

This base type has 3 constructors available.

StoryReaction

How a certain peer reacted to a story

StoryReactionPublicForward

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

StoryReactionPublicRepost

A certain peer has reposted the story.

TL Schema

storyReaction#6090d6d5
peer_id:Peer
date:int
reaction:Reaction

= StoryReaction

Parameter Tree

StoryReaction
├── peer_idPeer
│ ├── PeerUser
│ │ └── user_idlong
│ ├── PeerChat
│ │ └── chat_idlong
│ └── PeerChannel
│ └── channel_idlong
├── dateint
└── reactionReaction
├── ReactionEmpty
├── ReactionEmoji
│ └── emoticonstring
│ └── document_idlong
└── ReactionPaid

Example

StoryReaction(
    peer_id=PeerUser(user_id=0),
    date=0,
    reaction=ReactionEmpty(),
)