UpdateDeleteGroupCallMessages

class pyrogram.raw.types.UpdateDeleteGroupCallMessages

{schema}

Constructor of Update.

Details:
  • Layer: 223

  • ID: 3E85E92C

Parameters:

TL Schema

updateDeleteGroupCallMessages#3e85e92c
call:InputGroupCall
messages:Vector<int>

= Update

Parameter Tree

UpdateDeleteGroupCallMessages
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── messagesVector < int >

Example

UpdateDeleteGroupCallMessages(
    call=InputGroupCall(
        id=0,
        access_hash=0
    ),
    messages=[0],
)