Layer 224
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

Gogram Example

// MessagesReportReaction - positional arguments
result, err := client.MessagesReportReaction(&tg.InputPeerUser{UserID: int64(777000)}, 42, &tg.InputPeerUser{UserID: int64(777000)})
if err != nil {
    // handle error
}
// result is *tg.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.