phone.CheckGroupCall
- class pyrogram.raw.functions.phone.CheckGroupCall
Check whether the group call Server Forwarding Unit is currently receiving the streams with the specified WebRTC source IDs. Returns an intersection of the source IDs specified in sources, and the source IDs currently being forwarded by the SFU.
- Details:
Layer:
223ID:
B59CF977
- Parameters:
- call (
InputGroupCall): Group call
- sources (List of
int32-bit): Source IDs
- call (
- Returns:
List of
int32-bit
TL Schema
phone.checkGroupCall#b59cf977
call:InputGroupCall
sources:Vector<int>
= Vector<int>
Parameter Tree
CheckGroupCall
├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int└── sources →
Vector < int >Example
await app.invoke(
CheckGroupCall(
call=InputGroupCall(
id=0,
access_hash=0
),
sources=[0],
)
)