phone.EditGroupCallTitle

class pyrogram.raw.functions.phone.EditGroupCallTitle

Edit the title of a group call or livestream

Details:
  • Layer: 227

  • ID: 1CA6AC0A

Parameters:
Returns:

Updates

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 → string

Example

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