Interface StoryInfo

Contains basic information about a story.

interface StoryInfo {
    @type: "storyInfo";
    date: number;
    is_for_close_friends?: boolean;
    story_id: number;
}

Properties

@type: "storyInfo"
date: number

Point in time (Unix timestamp) when the story was published.

is_for_close_friends?: boolean

True, if the story is available only to close friends.

story_id: number

Unique story identifier among stories of the given sender.