StoryFwdHeader
- class pyrogram.raw.types.StoryFwdHeader
Contains info about the original poster of a reposted story.
Constructor of
StoryFwdHeader.- Details:
Layer:
223ID:
B826E150
- Parameters:
modified (
bool, optional) – Whether the story media was modified before reposting it (for example by overlaying a round video with a reaction).from_peer (
Peer, optional) – N/Afrom_name (
str, optional) – Will be set for stories forwarded from a user with forwards privacy enabled, in which case from will also be empty.story_id (
int32-bit, optional) – , contains the story ID
TL Schema
storyFwdHeader#b826e150
flags:#
modified:flags.3?true
from:flags.0?Peer
from_name:flags.1?string
story_id:flags.2?int
= StoryFwdHeader
Parameter Tree
StoryFwdHeader
├── modified →
true (optional)├── from_peer →
Peer (optional)│ ├──
PeerUser│ │ └── user_id →
long│ ├──
PeerChat│ │ └── chat_id →
long│ └──
PeerChannel│ └── channel_id →
long├── from_name →
string (optional)└── story_id →
int (optional)Example
StoryFwdHeader(
)