phone.GetGroupCall
- class pyrogram.raw.functions.phone.GetGroupCall
Get info about a group call
- Details:
Layer:
223ID:
41845DB
- Parameters:
call (
InputGroupCall) – The group calllimit (
int32-bit) – Maximum number of results to return, see pagination
- Returns:
TL Schema
phone.getGroupCall#41845db
call:InputGroupCall
limit:int
= phone.GroupCall
Parameter Tree
GetGroupCall
├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int└── limit →
intExample
await app.invoke(
GetGroupCall(
call=InputGroupCall(
id=0,
access_hash=0
),
limit=0,
)
)