Class MessageReactionUpdated

java.lang.Object
io.github.natanimn.telebof.types.updates.MessageReactionUpdated
All Implemented Interfaces:
TelegramUpdate

public class MessageReactionUpdated extends Object implements TelegramUpdate
This object represents a change of a reaction on a message performed by a user.
Since:
3 March 2025
  • Field Details

    • chat

      public Chat chat
      The chat containing the message the user reacted to
    • message_id

      public Integer message_id
      Unique identifier of the message inside the chat
    • user

      public User user
      The user that changed the reaction, if the user isn't anonymous
    • actor_chat

      public Chat actor_chat
      The chat on behalf of which the reaction was changed, if the user is anonymous
    • date

      public int date
      Date of the change in Unix time
    • old_reaction

      public List<ReactionType> old_reaction
      Previous list of reaction types that were set by the user
    • new_reaction

      public List<ReactionType> new_reaction
      New list of reaction types that have been set by the user
  • Constructor Details

    • MessageReactionUpdated

      public MessageReactionUpdated()
  • Method Details