Layer 224
method
phone.deleteGroupCallParticipantMessages#1dbfeca0 flags:# report_spam:flags.0?true call:InputGroupCall participant:InputPeer = Updates;

Parameters

Name Type Description
ReportSpam flags.0?true Report as spam
Call InputGroupCall Group call
Participant InputPeer Participant peer

Returns

Updates

Gogram Example

// PhoneDeleteGroupCallParticipantMessages - using Params struct
result, err := client.PhoneDeleteGroupCallParticipantMessages(&tg.PhoneDeleteGroupCallParticipantMessagesParams{
    Call: &tg.InputGroupCall{},
    Participant: &tg.InputPeerUser{UserID: int64(777000)},

    // Optional fields:
    // ReportSpam: true,
})
if err != nil {
    // handle error
}
// result is *tg.Updates