InputSecureFileUploaded
- class pyrogram.raw.types.InputSecureFileUploaded
Uploaded secure file, for more info see the passport docs »
Constructor of
InputSecureFile.- Details:
Layer:
223ID:
3334B0F0
- Parameters:
id (
int64-bit) – Secure file IDparts (
int32-bit) – Secure file part countmd5_checksum (
str) – MD5 hash of encrypted uploaded file, to be checked server-sidefile_hash (
bytes) – File hashsecret (
bytes) – Secret
TL Schema
inputSecureFileUploaded#3334b0f0
id:long
parts:int
md5_checksum:string
file_hash:bytes
secret:bytes
= InputSecureFile
Parameter Tree
InputSecureFileUploaded
├── id →
long├── parts →
int├── md5_checksum →
string├── file_hash →
bytes└── secret →
bytesExample
InputSecureFileUploaded(
id=0,
parts=0,
md5_checksum="text",
file_hash=b"data",
secret=b"data",
)