Class: TD::Types::FoundChatMessages
- Defined in:
- lib/tdlib/types/found_chat_messages.rb
Overview
Contains a list of messages found by a search in a given chat.
Instance Attribute Summary collapse
-
#messages ⇒ Array<TD::Types::Message>
List of messages.
-
#next_from_message_id ⇒ Integer
The offset for the next request.
-
#total_count ⇒ Integer
Approximate total number of messages found; -1 if unknown.
Method Summary
Methods inherited from Base
Instance Attribute Details
#messages ⇒ Array<TD::Types::Message>
List of messages.
8 9 10 |
# File 'lib/tdlib/types/found_chat_messages.rb', line 8 def @messages end |
#next_from_message_id ⇒ Integer
The offset for the next request. If 0, there are no more results.
8 9 10 |
# File 'lib/tdlib/types/found_chat_messages.rb', line 8 def @next_from_message_id end |
#total_count ⇒ Integer
Approximate total number of messages found; -1 if unknown.
8 9 10 |
# File 'lib/tdlib/types/found_chat_messages.rb', line 8 def total_count @total_count end |