Layer 220
PhoneDeleteGroupCallParticipantMessages
method
phone.deleteGroupCallParticipantMessages#1dbfeca0 flags:# report_spam:flags.0?true call:InputGroupCall participant:InputPeer = Updates;
Parameters
| Name | Type | Description |
|---|---|---|
| ReportSpam | flags.0?true | |
| Call | InputGroupCall | |
| Participant | InputPeer |
Returns
UpdatesGogram Example
// PhoneDeleteGroupCallParticipantMessages - using Params struct result, err := client.PhoneDeleteGroupCallParticipantMessages(&tg.PhoneDeleteGroupCallParticipantMessagesParams{ Call: &tg.InputGroupCall{}, Participant: &tg.InputPeerUser{UserID: int64(123456789)}, // Optional fields: // ReportSpam: true, }) if err != nil { // handle error } // result is *tg.Updates