phone.SaveCallDebug

class pyrogram.raw.functions.phone.SaveCallDebug

Send phone call debug data to server

Details:
  • Layer: 223

  • ID: 277ADD7E

Parameters:
Returns:

bool

TL Schema

phone.saveCallDebug#277add7e
peer:InputPhoneCall
debug:DataJSON

= Bool

Parameter Tree

SaveCallDebug
├── peerInputPhoneCall
│ └── InputPhoneCall
│ ├── idlong
│ └── access_hashlong
└── debugDataJSON
└── DataJSON
└── datastring

Example

await app.invoke(
    SaveCallDebug(
        peer=InputPhoneCall(
            id=0,
            access_hash=0
        ),
        debug=DataJSON(data="text"),
    )
)