phone.LeaveGroupCall
- class pyrogram.raw.functions.phone.LeaveGroupCall
Leave a group call
- Details:
Layer:
223ID:
500377F9
- Parameters:
call (
InputGroupCall) – The group callsource (
int32-bit) – Your source ID
- Returns:
TL Schema
phone.leaveGroupCall#500377f9
call:InputGroupCall
source:int
= Updates
Parameter Tree
LeaveGroupCall
├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int└── source →
intExample
await app.invoke(
LeaveGroupCall(
call=InputGroupCall(
id=0,
access_hash=0
),
source=0,
)
)