Interface MessageInteractionInfo

Contains information about interactions with a message.

interface MessageInteractionInfo {
    @type: "messageInteractionInfo";
    forward_count: number;
    reactions: MessageReactions;
    reply_info: MessageReplyInfo;
    view_count: number;
}

Properties

@type: "messageInteractionInfo"
forward_count: number

Number of times the message was forwarded.

reactions: MessageReactions

The list of reactions or tags added to the message; may be null.

reply_info: MessageReplyInfo

Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself.

view_count: number

Number of times the message was viewed.