InputFileBig

class pyrogram.raw.types.InputFileBig

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

Constructor of InputFile.

Details:
  • Layer: 223

  • ID: FA4F0BB5

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

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

  • name (str) – Full file name

TL Schema

inputFileBig#fa4f0bb5
id:long
parts:int
name:string

= InputFile

Parameter Tree

InputFileBig
├── idlong
├── partsint
└── namestring

Example

InputFileBig(
    id=0,
    parts=0,
    name="text",
)