Interface GetMessageAddedReactions

Returns reactions added for a message, along with their sender. Request type for Tdjson#getMessageAddedReactions.

interface GetMessageAddedReactions {
    @type: "getMessageAddedReactions";
    chat_id: number;
    limit: number;
    message_id: number;
    offset: string;
    reaction_type: ReactionType;
}

Properties

@type: "getMessageAddedReactions"
chat_id: number

Identifier of the chat to which the message belongs.

limit: number

The maximum number of reactions to be returned; must be positive and can't be greater than 100.

message_id: number

Identifier of the message. Use message.interaction_info.reactions.can_get_added_reactions to check whether added reactions can be received for the message.

offset: string

Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.

reaction_type: ReactionType

Type of the reactions to return; pass null to return all added reactions; reactionTypePaid isn't supported.