StoryFwdHeader

class pyrogram.raw.base.StoryFwdHeader

Contains info about the original poster of a reposted story.

Constructors:

This base type has 1 constructor available.

StoryFwdHeader

Contains info about the original poster of a reposted story.

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(
    modified=None,
    from_peer=PeerUser(user_id=0),
    from_name="text",
    story_id=0,
)