Interface StoryFullId

Contains identifier of a story along with identifier of its sender.

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

Properties

@type: "storyFullId"
sender_chat_id: number

Identifier of the chat that posted the story.

story_id: number

Unique story identifier among stories of the given sender.