phone.SaveCallLog

class pyrogram.raw.functions.phone.SaveCallLog

Save phone call debug information

Details:
  • Layer: 227

  • ID: 41248786

Parameters:
Returns:

bool

TL Schema

phone.saveCallLog#41248786
peer:InputPhoneCall
file:InputFile

= Bool

Parameter Tree

SaveCallLog
├── peer → InputPhoneCall
│ └── InputPhoneCall
│ ├── id → long
│ └── access_hash → long
└── file → InputFile
├── InputFile
│ ├── id → long
│ ├── parts → int
│ ├── name → string
│ └── md5_checksum → string
├── InputFileBig
│ ├── id → long
│ ├── parts → int
│ └── name → string
└── id → InputDocument
└── InputDocument
├── id → long
├── access_hash → long
└── file_reference → bytes

Example

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