StoryFwdHeader

class pyrogram.raw.types.StoryFwdHeader

Contains info about the original poster of a reposted story.

Constructor of StoryFwdHeader.

Details:
  • Layer: 223

  • ID: 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/A

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

Example

StoryFwdHeader(
)