phone.SaveCallDebug

class pyrogram.raw.functions.phone.SaveCallDebug

Send phone call debug data to server

Details:
  • Layer: 227

  • ID: 277ADD7E

Parameters:
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 → string

Example

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