Class: TD::Types::FoundFileDownloads
- Defined in:
- lib/tdlib/types/found_file_downloads.rb
Overview
Contains a list of downloaded files, found by a search.
Instance Attribute Summary collapse
-
#files ⇒ Array<TD::Types::FileDownload>
The list of files.
-
#next_offset ⇒ TD::Types::String
The offset for the next request.
-
#total_counts ⇒ TD::Types::DownloadedFileCounts
Total number of suitable files, ignoring offset.
Method Summary
Methods inherited from Base
Instance Attribute Details
#files ⇒ Array<TD::Types::FileDownload>
The list of files.
8 9 10 |
# File 'lib/tdlib/types/found_file_downloads.rb', line 8 def files @files end |
#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_file_downloads.rb', line 8 def next_offset @next_offset end |
#total_counts ⇒ TD::Types::DownloadedFileCounts
Total number of suitable files, ignoring offset.
8 9 10 |
# File 'lib/tdlib/types/found_file_downloads.rb', line 8 def total_counts @total_counts end |