Interface RemoveMessageReaction

Removes a reaction from a message. A chosen reaction can always be removed. Request type for Tdjson#removeMessageReaction.

interface RemoveMessageReaction {
    @type: "removeMessageReaction";
    chat_id: number;
    message_id: number;
    reaction_type: ReactionType;
}

Properties

@type: "removeMessageReaction"
chat_id: number

Identifier of the chat to which the message belongs.

message_id: number

Identifier of the message.

reaction_type: ReactionType

Type of the reaction to remove. The paid reaction can't be removed.