UpdateSentStoryReaction

class pyrogram.raw.types.UpdateSentStoryReaction

Indicates we reacted to a story ».

Constructor of Update.

Details:
  • Layer: 227

  • ID: 7D627683

Parameters:
  • peer (Peer) – The peer that sent the story

  • story_id (int 32-bit) – ID of the story we reacted to

  • reaction (Reaction) – The reaction that was sent

TL Schema

updateSentStoryReaction#7d627683
peer:Peer
story_id:int
reaction:Reaction

= Update

Parameter Tree

UpdateSentStoryReaction
├── peer → Peer
│ ├── PeerUser
│ │ └── user_id → long
│ ├── PeerChat
│ │ └── chat_id → long
│ └── PeerChannel
│ └── channel_id → long
├── story_id → int
└── reaction → Reaction
├── ReactionEmpty
├── ReactionEmoji
│ └── emoticon → string
│ └── document_id → long
└── ReactionPaid

Example

UpdateSentStoryReaction(
    peer=PeerUser(user_id=0),
    story_id=0,
    reaction=ReactionEmpty(),
)