MadelineProto/docs/TD_docs/constructors/updateFileProgress.md
2017-07-23 16:33:46 +02:00

1.0 KiB

title description
updateFileProgress File is partly downloaded/uploaded

Constructor: updateFileProgress

Back to constructors index

File is partly downloaded/uploaded

Attributes:

Name Type Required Description
file_id int Yes File identifier
size int Yes Total file size (0 means unknown)
ready int Yes Number of bytes already downloaded/uploaded. Negative number means that download/upload has failed and was terminated

Type: Update

Example:

$updateFileProgress = ['_' => 'updateFileProgress', 'file_id' => int, 'size' => int, 'ready' => int];

PWRTelegram json-encoded version:

{"_": "updateFileProgress", "file_id": int, "size": int, "ready": int}

Or, if you're into Lua:

updateFileProgress={_='updateFileProgress', file_id=int, size=int, ready=int}