Interface MessageReactions

Contains a list of reactions added to a message.

interface MessageReactions {
    @type: "messageReactions";
    are_tags?: boolean;
    can_get_added_reactions?: boolean;
    paid_reactors: PaidReactor[];
    reactions: MessageReaction[];
}

Properties

@type: "messageReactions"
are_tags?: boolean

True, if the reactions are tags and Telegram Premium users can filter messages by them.

can_get_added_reactions?: boolean

True, if the list of added reactions is available using getMessageAddedReactions.

paid_reactors: PaidReactor[]

Information about top users that added the paid reaction.

reactions: MessageReaction[]

List of added reactions.