phone.deleteGroupCallParticipantMessages
Layer 225
Constructor ID: 0x1dbfeca0
Returns: Updates
Parameters
| Name | Type | Description |
|---|---|---|
report_spam | bool (flags.0, optional) | |
call | InputGroupCall | |
participant | InputPeer |
Example
go
result, err := client.Raw(&tg.DeleteGroupCallParticipantMessagesRequest{
report_spam: false,
call: nil, // InputGroupCall
participant: nil, // InputPeer
})
if err != nil {
panic(err)
}
print(result)