mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 09:16:55 +01:00
651 B
651 B
title | description |
---|---|
updateFile | File is downloaded/uploaded |
Constructor: updateFile
File is downloaded/uploaded
Attributes:
Name | Type | Required | Description |
---|---|---|---|
file | file | Yes | Synced file |
Type: Update
Example:
$updateFile = ['_' => 'updateFile', 'file' => file, ];
PWRTelegram json-encoded version:
{"_":"updateFile","file":"file"}
Or, if you're into Lua:
updateFile={_='updateFile', file=file, }