950 B
950 B
title | description |
---|---|
updateFileGenerationProgress | Informs that a file is being generated |
Constructor: updateFileGenerationProgress
Informs that a file is being generated
Attributes:
Name | Type | Required | Description |
---|---|---|---|
file_id | int | Yes | File identifier |
size | int | Yes | Expected size of the generated file |
ready | int | Yes | Number of bytes already generated. Negative number means that generation has failed and was terminated |
Type: Update
Example:
$updateFileGenerationProgress = ['_' => 'updateFileGenerationProgress', 'file_id' => int, 'size' => int, 'ready' => int, ];
Or, if you're into Lua:
updateFileGenerationProgress={_='updateFileGenerationProgress', file_id=int, size=int, ready=int, }