InputReplyToStory
- class pyrogram.raw.types.InputReplyToStory
Reply to a story.
Constructor of
InputReplyTo.- Details:
Layer:
223ID:
5881323A
- Parameters:
peer (
InputPeer) – Sender of the storystory_id (
int32-bit) – ID of the story to reply to.
TL Schema
inputReplyToStory#5881323a
peer:InputPeer
story_id:int
= InputReplyTo
Parameter Tree
InputReplyToStory
├── peer →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ │ └── chat_id →
long│ ├──
InputPeerUser│ │ ├── user_id →
long│ │ └── access_hash →
long│ ├──
InputPeerChannel│ │ ├── channel_id →
long│ │ └── access_hash →
long│ ├──
InputPeerUserFromMessage│ │ ├── peer →
InputPeer│ │ │ ├──
InputPeerEmpty│ │ │ ├──
InputPeerSelf│ │ │ ├──
InputPeerChat│ │ │ ├──
InputPeerUser│ │ │ ├──
InputPeerChannel│ │ │ ├──
InputPeerUserFromMessage│ │ │ └──
InputPeerChannelFromMessage│ │ ├── msg_id →
int│ │ └── user_id →
long│ ├── peer →
InputPeer│ │ ├──
InputPeerEmpty│ │ ├──
InputPeerSelf│ │ ├──
InputPeerChat│ │ ├──
InputPeerUser│ │ ├──
InputPeerChannel│ │ ├──
InputPeerUserFromMessage│ │ └──
InputPeerChannelFromMessage│ ├── msg_id →
int│ └── channel_id →
long└── story_id →
intExample
InputReplyToStory(
peer=await app.resolve_peer(chat_id),
story_id=0,
)