phone.SaveCallLog

class pyrogram.raw.functions.phone.SaveCallLog

Save phone call debug information

Details:
  • Layer: 223

  • ID: 41248786

Parameters:
Returns:

bool

TL Schema

phone.saveCallLog#41248786
peer:InputPhoneCall
file:InputFile

= Bool

Parameter Tree

SaveCallLog
├── peerInputPhoneCall
│ └── InputPhoneCall
│ ├── idlong
│ └── access_hashlong
└── fileInputFile
├── InputFile
│ ├── idlong
│ ├── partsint
│ ├── namestring
│ └── md5_checksumstring
├── InputFileBig
│ ├── idlong
│ ├── partsint
│ └── namestring
└── idInputDocument
└── InputDocument
├── idlong
├── access_hashlong
└── file_referencebytes

Example

await app.invoke(
    SaveCallLog(
        peer=InputPhoneCall(
            id=0,
            access_hash=0
        ),
        file=InputFile(
            id=0,
            parts=0,
            name="text",
            md5_checksum="text"
        ),
    )
)