phone.EditGroupCallTitle

class pyrogram.raw.functions.phone.EditGroupCallTitle

Edit the title of a group call or livestream

Details:
  • Layer: 223

  • ID: 1CA6AC0A

Parameters:
Returns:

Updates

TL Schema

phone.editGroupCallTitle#1ca6ac0a
call:InputGroupCall
title:string

= Updates

Parameter Tree

EditGroupCallTitle
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── titlestring

Example

await app.invoke(
    EditGroupCallTitle(
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
        title="text",
    )
)