phone.DeleteGroupCallParticipantMessages

class pyrogram.raw.functions.phone.DeleteGroupCallParticipantMessages

{schema}

Details:
  • Layer: 227

  • 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_spam → true (optional)
├── call → InputGroupCall
│ ├── InputGroupCall
│ │ ├── id → long
│ │ └── access_hash → long
│ ├── InputGroupCallSlug
│ │ └── slug → string
│ └── msg_id → int
└── participant → InputPeer
├── InputPeerEmpty
├── InputPeerSelf
├── InputPeerChat
│ └── chat_id → long
├── InputPeerUser
│ ├── user_id → long
│ └── access_hash → long
│ ├── channel_id → long
│ └── access_hash → long
│ ├── peer → InputPeer
│ │ ├── InputPeerEmpty
│ │ ├── InputPeerSelf
│ │ ├── InputPeerChat
│ │ ├── InputPeerUser
│ │ ├── InputPeerChannel
│ │ ├── InputPeerUserFromMessage
│ │ └── InputPeerChannelFromMessage
│ ├── msg_id → int
│ └── user_id → long
├── peer → InputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ ├── InputPeerUser
│ ├── InputPeerChannel
├── msg_id → int
└── channel_id → long

Example

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