Skip to content

stories.sendReaction

Layer 225

Constructor ID: 0x7fd736b2
Returns: Updates

Parameters

NameTypeDescription
add_to_recentbool (flags.0, optional)
peerInputPeer
story_idint32
reactionReaction

Example

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

Released under the Apache-2.0 License.