Class: TD::Types::FoundMessages
- Defined in:
- lib/tdlib/types/found_messages.rb
Overview
Contains a list of messages found by a search.
Instance Attribute Summary collapse
-
#messages ⇒ Array<TD::Types::Message>
List of messages.
-
#next_offset ⇒ TD::Types::String
The offset for the next request.
-
#total_count ⇒ Integer
Approximate total count 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_messages.rb', line 8 def @messages end |
#next_offset ⇒ TD::Types::String
The offset for the next request. If empty, there are no more results.
8 9 10 |
# File 'lib/tdlib/types/found_messages.rb', line 8 def next_offset @next_offset end |
#total_count ⇒ Integer
Approximate total count of messages found; -1 if unknown.
8 9 10 |
# File 'lib/tdlib/types/found_messages.rb', line 8 def total_count @total_count end |