1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
inputEncryptedFileBigUploaded | Assigns a new big encrypted file (over 10Mb in size), saved in parts using the method [upload.saveBigFilePart](../methods/upload.saveBigFilePart.md). | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: inputEncryptedFileBigUploaded
Assigns a new big encrypted file (over 10Mb in size), saved in parts using the method upload.saveBigFilePart.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | long | Yes | Random file id, created by the client |
parts | int | Yes | Number of saved parts |
key_fingerprint | int | Yes | 32-bit imprint of the key used to encrypt the file |
Type: InputEncryptedFile
Example:
$inputEncryptedFileBigUploaded = ['_' => 'inputEncryptedFileBigUploaded', 'id' => long, 'parts' => int, 'key_fingerprint' => int];
Or, if you're into Lua:
inputEncryptedFileBigUploaded={_='inputEncryptedFileBigUploaded', id=long, parts=int, key_fingerprint=int}