phone.EditGroupCallTitle
- class pyrogram.raw.functions.phone.EditGroupCallTitle
Edit the title of a group call or livestream
- Details:
Layer:
223ID:
1CA6AC0A
- Parameters:
call (
InputGroupCall) – Group calltitle (
str) – New title
- Returns:
TL Schema
phone.editGroupCallTitle#1ca6ac0a
call:InputGroupCall
title:string
= Updates
Parameter Tree
EditGroupCallTitle
├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int└── title →
stringExample
await app.invoke(
EditGroupCallTitle(
call=InputGroupCall(
id=0,
access_hash=0
),
title="text",
)
)