InputEncryptedFile

class pyrogram.raw.base.InputEncryptedFile

Object sets encrypted file for attachment

Constructors:

This base type has 4 constructors available.

InputEncryptedFile

Sets forwarded encrypted file for attachment.

InputEncryptedFileBigUploaded

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

InputEncryptedFileEmpty

Empty constructor.

InputEncryptedFileUploaded

Sets new encrypted file saved by parts using upload.saveFilePart method.

TL Schema

inputEncryptedFile#5a17b5e5
id:long
access_hash:long

= InputEncryptedFile

Parameter Tree

InputEncryptedFile
├── idlong
└── access_hashlong

Example

InputEncryptedFile(
    id=0,
    access_hash=0,
)