InputEncryptedFileBigUploaded

class pyrogram.raw.types.InputEncryptedFileBigUploaded

Assigns a new big encrypted file (over 10 MB in size), saved in parts using the method upload.saveBigFilePart.

Constructor of InputEncryptedFile.

Details:
  • Layer: 223

  • ID: 2DC173C8

Parameters:
  • id (int 64-bit) – Random file id, created by the client

  • parts (int 32-bit) – Number of saved parts

  • key_fingerprint (int 32-bit) – 32-bit imprint of the key used to encrypt the file

TL Schema

inputEncryptedFileBigUploaded#2dc173c8
id:long
parts:int
key_fingerprint:int

= InputEncryptedFile

Parameter Tree

InputEncryptedFileBigUploaded
├── idlong
├── partsint
└── key_fingerprintint

Example

InputEncryptedFileBigUploaded(
    id=0,
    parts=0,
    key_fingerprint=0,
)