Module tdlight.api

Class TdApi.SearchFileDownloads

Enclosing class:
TdApi

public static final class TdApi.SearchFileDownloads extends TdApi.Function<TdApi.FoundFileDownloads>
Searches for files in the file download list or recently downloaded files from the list. Returns FoundFileDownloads
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
     
    int
    The maximum number of files to be returned.
    Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.
    boolean
    Pass true to search only for active downloads, including paused.
    boolean
    Pass true to search only for completed downloads.
    Query to search for; may be empty to return all downloaded files.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Searches for files in the file download list or recently downloaded files from the list.
    Searches for files in the file download list or recently downloaded files from the list.
    SearchFileDownloads(String query, boolean onlyActive, boolean onlyCompleted, String offset, int limit)
    Searches for files in the file download list or recently downloaded files from the list.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
    int
     
    void
     

    Methods inherited from class it.tdlight.jni.TdApi.Function

    toString

    Methods inherited from class it.tdlight.jni.TdApi.Object

    serialize

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • query

      public String query
      Query to search for; may be empty to return all downloaded files.
    • onlyActive

      public boolean onlyActive
      Pass true to search only for active downloads, including paused.
    • onlyCompleted

      public boolean onlyCompleted
      Pass true to search only for completed downloads.
    • offset

      public String offset
      Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.
    • limit

      public int limit
      The maximum number of files to be returned.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • SearchFileDownloads

      public SearchFileDownloads()
      Searches for files in the file download list or recently downloaded files from the list. Returns FoundFileDownloads
    • SearchFileDownloads

      public SearchFileDownloads(String query, boolean onlyActive, boolean onlyCompleted, String offset, int limit)
      Searches for files in the file download list or recently downloaded files from the list. Returns FoundFileDownloads
      Parameters:
      query - String Query to search for; may be empty to return all downloaded files.
      onlyActive - boolean Pass true to search only for active downloads, including paused.
      onlyCompleted - boolean Pass true to search only for completed downloads.
      offset - String Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.
      limit - int The maximum number of files to be returned.
    • SearchFileDownloads

      public SearchFileDownloads(DataInput input) throws IOException
      Searches for files in the file download list or recently downloaded files from the list. Returns FoundFileDownloads
      Throws:
      IOException
  • Method Details