phone.SaveCallDebug
- class pyrogram.raw.functions.phone.SaveCallDebug
Send phone call debug data to server
- Details:
Layer:
223ID:
277ADD7E
- Parameters:
peer (
InputPhoneCall) – Phone calldebug (
DataJSON) – Debug statistics obtained from libtgvoip
- Returns:
bool
TL Schema
phone.saveCallDebug#277add7e
peer:InputPhoneCall
debug:DataJSON
= Bool
Parameter Tree
SaveCallDebug
├── peer →
InputPhoneCall│ └──
InputPhoneCall│ ├── id →
long│ └── access_hash →
long└── debug →
DataJSON└──
DataJSON└── data →
stringExample
await app.invoke(
SaveCallDebug(
peer=InputPhoneCall(
id=0,
access_hash=0
),
debug=DataJSON(data="text"),
)
)