Interface MessageStory

A message with a forwarded story. Subtype of MessageContent.

interface MessageStory {
    @type: "messageStory";
    story_id: number;
    story_sender_chat_id: number;
    via_mention?: boolean;
}

Properties

@type: "messageStory"
story_id: number

Story identifier.

story_sender_chat_id: number

Identifier of the chat that posted the story.

via_mention?: boolean

True, if the story was automatically forwarded because of a mention of the user.