Interface AddedReaction

Represents a reaction applied to a message.

interface AddedReaction {
    @type: "addedReaction";
    date: number;
    is_outgoing?: boolean;
    sender_id: MessageSender;
    type: ReactionType;
}

Properties

@type: "addedReaction"
date: number

Point in time (Unix timestamp) when the reaction was added.

is_outgoing?: boolean

True, if the reaction was added by the current user.

sender_id: MessageSender

Identifier of the chat member, applied the reaction.

Type of the reaction.