phone.DeleteGroupCallMessages

class pyrogram.raw.functions.phone.DeleteGroupCallMessages

{schema}

Details:
  • Layer: 223

  • ID: F64F54F7

Parameters:
  • call (InputGroupCall)

  • messages (List of int 32-bit)

  • report_spam (bool, optional)

Returns:

Updates

TL Schema

phone.deleteGroupCallMessages#f64f54f7
flags:#
report_spam:flags.0?true
call:InputGroupCall
messages:Vector<int>

= Updates

Parameter Tree

DeleteGroupCallMessages
├── report_spamtrue (optional)
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── messagesVector < int >

Example

await app.invoke(
    DeleteGroupCallMessages(
        report_spam=None,
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
        messages=[0],
    )
)