Skip to content

messages.sendReaction

Layer 225

Constructor ID: 0xd30d78d4
Returns: Updates

Parameters

NameTypeDescription
bigbool (flags.1, optional)
add_to_recentbool (flags.2, optional)
peerInputPeer
msg_idint32
reaction[]Reaction (flags.0, optional)

Example

go
result, err := client.Raw(&tg.SendReactionRequest{
    big: false,
    add_to_recent: false,
    peer: nil, // InputPeer
    msg_id: 0,
    reaction: nil,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.