Layer 220
method Users
messages.reportReaction#3f64c076 peer:InputPeer id:int reaction_peer:InputPeer = Bool;

Parameters

Name Type Description
Peer InputPeer Peer where the message was sent
Id int Message ID
ReactionPeer InputPeer Peer that sent the reaction

Returns

Bool

Possible Errors

Code Type Description
400 MSG_ID_INVALID Invalid message ID provided.
400 PEER_ID_INVALID The provided peer id is invalid.
400 USER_ID_INVALID The provided user ID is invalid.

Gogram Example

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