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
├── modifiedtrue (optional)
├── from_peerPeer (optional)
│ ├── PeerUser
│ │ └── user_idlong
│ ├── PeerChat
│ │ └── chat_idlong
│ └── PeerChannel
│ └── channel_idlong
├── from_namestring (optional)
└── story_idint (optional)

Example

StoryFwdHeader(
    modified=None,
    from_peer=PeerUser(user_id=0),
    from_name="text",
    story_id=0,
)