StoryItemSkipped

class pyrogram.raw.types.StoryItemSkipped

Represents an active story, whose full information was omitted for space and performance reasons; use stories.getStoriesByID to fetch full info about the skipped story when and if needed.

Constructor of StoryItem.

Details:
  • Layer: 223

  • ID: FFADC913

Parameters:
  • id (int 32-bit) – Story ID

  • date (int 32-bit) – When was the story posted.

  • expire_date (int 32-bit) – When does the story expire.

  • close_friends (bool, optional) – Whether this story can only be viewed by our close friends, see here » for more info

  • live (bool, optional)

TL Schema

storyItemSkipped#ffadc913
flags:#
close_friends:flags.8?true
live:flags.9?true
id:int
date:int
expire_date:int

= StoryItem

Parameter Tree

StoryItemSkipped
├── close_friendstrue (optional)
├── livetrue (optional)
├── idint
├── dateint
└── expire_dateint

Example

StoryItemSkipped(
    id=0,
    date=0,
    expire_date=0,
)