Interface Stories

Represents a list of stories.

interface Stories {
    @type: "stories";
    pinned_story_ids: number[];
    stories: Story[];
    total_count: number;
}

Properties

@type: "stories"
pinned_story_ids: number[]

Identifiers of the pinned stories; returned only in getChatPostedToChatPageStories with from_story_id == 0.

stories: Story[]

The list of stories.

total_count: number

Approximate total number of stories found.