InputEncryptedFileUploaded
- class pyrogram.raw.types.InputEncryptedFileUploaded
Sets new encrypted file saved by parts using upload.saveFilePart method.
Constructor of
InputEncryptedFile.- Details:
Layer:
223ID:
64BD0306
- Parameters:
id (
int64-bit) – Random file ID created by clientparts (
int32-bit) – Number of saved partsmd5_checksum (
str) – In case md5-HASH of the (already encrypted) file was transmitted, file content will be checked prior to usekey_fingerprint (
int32-bit) – 32-bit fingerprint of the key used to encrypt a file
TL Schema
inputEncryptedFileUploaded#64bd0306
id:long
parts:int
md5_checksum:string
key_fingerprint:int
= InputEncryptedFile
Parameter Tree
InputEncryptedFileUploaded
├── id →
long├── parts →
int├── md5_checksum →
string└── key_fingerprint →
intExample
InputEncryptedFileUploaded(
id=0,
parts=0,
md5_checksum="text",
key_fingerprint=0,
)