Skip to content

messages.getMessageReactionsList

Layer 225

Constructor ID: 0x461b3f48
Returns: MessageReactionsList

Parameters

NameTypeDescription
peerInputPeer
idint32
reactionReaction (flags.0, optional)
offsetstring (flags.1, optional)
limitint32

Example

go
result, err := client.Raw(&tg.GetMessageReactionsListRequest{
    peer: nil, // InputPeer
    id: 0,
    reaction: nil, // Reaction
    offset: "",
    limit: 0,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.