Interface StoryFullId

Contains identifier of a story along with identifier of the chat that posted it.

interface StoryFullId {
    @type: "storyFullId";
    poster_chat_id: number;
    story_id: number;
}

Properties

@type: "storyFullId"
poster_chat_id: number

Identifier of the chat that posted the story.

story_id: number

Unique story identifier among stories of the chat.