You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//@can_be_deleted True, if the file can be deleted
127
127
//@is_downloading_active True, if the file is currently being downloaded (or a local copy is being generated by some other means)
128
128
//@is_downloading_completed True, if the local copy is fully available
129
-
//@download_offset Download will be started from this offset. downloaded_prefix_size is calculated from this offset.
130
-
//@downloaded_prefix_size If is_downloading_completed is false, then only some prefix of the file is ready to be read. downloaded_prefix_size is the size of that prefix
129
+
//@download_offset Download will be started from this offset. downloaded_prefix_size is calculated from this offset
130
+
//@downloaded_prefix_size If is_downloading_completed is false, then only some prefix of the file starting from download_offset is ready to be read. downloaded_prefix_size is the size of that prefix
131
131
//@downloaded_size Total downloaded file bytes. Should be used only for calculating download progress. The actual file size may be bigger, and some parts of it may contain garbage
//@description Asynchronously downloads a file from the cloud. updateFile will be used to notify about the download progress and successful completion of the download. Returns file state just after the download has been started
2950
2950
//@file_id Identifier of the file to download
2951
2951
//@priority Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile was called will be downloaded first
2952
-
//@offset File will be downloaded starting from offset first. Supposed to be used for streaming.
2952
+
//@offset File will be downloaded starting from that offset in bytes first. Supposed to be used for streaming
//@description Returns file downloaded prefix size from a given offset @file_id Identifier of the file @offset Offset from which downloaded prefix size should be calculated
//@description Stops the downloading of a file. If a file has already been downloaded, does nothing @file_id Identifier of a file to stop downloading @only_if_pending Pass true to stop downloading only if it hasn't been started, i.e. request hasn't been sent to server
0 commit comments