Layer 227
method Users Bots
messages.deleteParticipantReactions#a0b80cf8 peer:InputPeer participant:InputPeer = Bool;

Parameters

Name Type Description
Peer InputPeer The group or channel where the participant's reactions should be removed
Participant InputPeer The participant whose reactions should be removed

Returns

Bool

Gogram Example

// MessagesDeleteParticipantReactions - positional arguments
result, err := client.MessagesDeleteParticipantReactions(&tg.InputPeerUser{UserID: int64(777000)}, &tg.InputPeerUser{UserID: int64(777000)})
if err != nil {
    // handle error
}
// result is *tg.Bool

Possible Errors

Code Type Description
400 PEER_ID_INVALID The provided peer id is invalid.