phone.DeleteGroupCallParticipantMessages

class pyrogram.raw.functions.phone.DeleteGroupCallParticipantMessages

{schema}

Details:
  • Layer: 223

  • ID: 1DBFECA0

Parameters:
Returns:

Updates

TL Schema

phone.deleteGroupCallParticipantMessages#1dbfeca0
flags:#
report_spam:flags.0?true
call:InputGroupCall
participant:InputPeer

= Updates

Parameter Tree

DeleteGroupCallParticipantMessages
├── report_spamtrue (optional)
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── participantInputPeer
├── InputPeerEmpty
├── InputPeerSelf
├── InputPeerChat
│ └── chat_idlong
├── InputPeerUser
│ ├── user_idlong
│ └── access_hashlong
│ ├── channel_idlong
│ └── access_hashlong
│ ├── peerInputPeer
│ │ ├── InputPeerEmpty
│ │ ├── InputPeerSelf
│ │ ├── InputPeerChat
│ │ ├── InputPeerUser
│ │ ├── InputPeerChannel
│ │ ├── InputPeerUserFromMessage
│ │ └── InputPeerChannelFromMessage
│ ├── msg_idint
│ └── user_idlong
├── peerInputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ ├── InputPeerUser
│ ├── InputPeerChannel
├── msg_idint
└── channel_idlong

Example

await app.invoke(
    DeleteGroupCallParticipantMessages(
        report_spam=None,
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
        participant=await app.resolve_peer(chat_id),
    )
)