Class: TD::Types::FoundStories
- Defined in:
- lib/tdlib/types/found_stories.rb
Overview
Contains a list of stories found by a search.
Instance Attribute Summary collapse
-
#next_offset ⇒ TD::Types::String
The offset for the next request.
-
#stories ⇒ Array<TD::Types::Story>
List of stories.
-
#total_count ⇒ Integer
Approximate total number of stories found.
Method Summary
Methods inherited from Base
Instance Attribute Details
#next_offset ⇒ TD::Types::String
The offset for the next request. If empty, then there are no more results.
8 9 10 |
# File 'lib/tdlib/types/found_stories.rb', line 8 def next_offset @next_offset end |
#stories ⇒ Array<TD::Types::Story>
List of stories.
8 9 10 |
# File 'lib/tdlib/types/found_stories.rb', line 8 def stories @stories end |
#total_count ⇒ Integer
Approximate total number of stories found.
8 9 10 |
# File 'lib/tdlib/types/found_stories.rb', line 8 def total_count @total_count end |