Interface InternalLinkTypeStory

The link is a link to a story. Call searchPublicChat with the given poster username, then call getStory with the received chat identifier and the given story identifier, then show the story if received. Subtype of InternalLinkType.

interface InternalLinkTypeStory {
    @type: "internalLinkTypeStory";
    story_id: number;
    story_poster_username: string;
}

Properties

@type: "internalLinkTypeStory"
story_id: number

Story identifier.

story_poster_username: string

Username of the poster of the story.