Module tdlight.api

Class TdApi.FileDownload

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.FileDownload
Enclosing class:
TdApi

public static final class TdApi.FileDownload extends TdApi.Object
Describes a file added to file download list.
  • Field Details

    • fileId

      public int fileId
      File identifier.
    • message

      public TdApi.Message message
      The message with the file.
    • addDate

      public int addDate
      Point in time (Unix timestamp) when the file was added to the download list.
    • completeDate

      public int completeDate
      Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed.
    • isPaused

      public boolean isPaused
      True, if downloading of the file is paused.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • FileDownload

      public FileDownload()
      Describes a file added to file download list.
    • FileDownload

      public FileDownload(int fileId, TdApi.Message message, int addDate, int completeDate, boolean isPaused)
      Describes a file added to file download list.
      Parameters:
      fileId - int File identifier.
      message - Message The message with the file.
      addDate - int Point in time (Unix timestamp) when the file was added to the download list.
      completeDate - int Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed.
      isPaused - boolean True, if downloading of the file is paused.
    • FileDownload

      public FileDownload(DataInput input) throws IOException
      Describes a file added to file download list.
      Throws:
      IOException
  • Method Details