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:
223ID:
FFADC913
- Parameters:
id (
int32-bit) – Story IDdate (
int32-bit) – When was the story posted.expire_date (
int32-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 infolive (
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_friends →
true (optional)├── live →
true (optional)├── id →
int├── date →
int└── expire_date →
intExample
StoryItemSkipped(
id=0,
date=0,
expire_date=0,
)