Interface InternalLinkTypeStory

The link is a link to a story. Call searchPublicChat with the given sender 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_sender_username: string;
}

Properties

@type: "internalLinkTypeStory"
story_id: number

Story identifier.

story_sender_username: string

Username of the sender of the story.