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.
How a certain peer reacted to a story
A certain peer has forwarded the story as a message to a public chat or channel.
A certain peer has reposted the story.
TL Schema
storyReaction#6090d6d5
peer_id:Peer
date:int
reaction:Reaction
= StoryReaction
Parameter Tree
StoryReaction
├── peer_id →
Peer│ ├──
PeerUser│ │ └── user_id →
long│ ├──
PeerChat│ │ └── chat_id →
long│ └──
PeerChannel│ └── channel_id →
long├── date →
int└── reaction →
Reaction├──
ReactionEmpty├──
ReactionEmoji│ └── emoticon →
string│ └── document_id →
long└──
ReactionPaidExample
StoryReaction(
peer_id=PeerUser(user_id=0),
date=0,
reaction=ReactionEmpty(),
)