Class: TD::Types::Update::MessageUnreadReactions

Inherits:
TD::Types::Update show all
Defined in:
lib/tdlib/types/update/message_unread_reactions.rb

Overview

The list of unread reactions added to a message was changed.

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#to_hash, #to_json

Instance Attribute Details

#chat_idInteger

Chat identifier.

Returns:

  • (Integer)

    the current value of chat_id



8
9
10
# File 'lib/tdlib/types/update/message_unread_reactions.rb', line 8

def chat_id
  @chat_id
end

#message_idInteger

Message identifier.

Returns:

  • (Integer)

    the current value of message_id



8
9
10
# File 'lib/tdlib/types/update/message_unread_reactions.rb', line 8

def message_id
  @message_id
end

#unread_reaction_countInteger

The new number of messages with unread reactions left in the chat.

Returns:

  • (Integer)

    the current value of unread_reaction_count



8
9
10
# File 'lib/tdlib/types/update/message_unread_reactions.rb', line 8

def unread_reaction_count
  @unread_reaction_count
end

#unread_reactionsArray<TD::Types::UnreadReaction>

The new list of unread reactions.

Returns:



8
9
10
# File 'lib/tdlib/types/update/message_unread_reactions.rb', line 8

def unread_reactions
  @unread_reactions
end