mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
1.5 KiB
1.5 KiB
title | description | nav_exclude | image | redirect_from |
---|---|---|---|---|
messages.messageReactionsList | List of peers that reacted to a specific message | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/messages_messageReactionsList.html |
Constructor: messages.messageReactionsList
List of peers that reacted to a specific message
Attributes:
Name | Type | Required | Description |
---|---|---|---|
count | int | Yes | Total number of reactions matching query |
reactions | Array of MessagePeerReaction | Yes | List of peers that reacted to a specific message |
chats | Array of Chat | Yes | Mentioned chats |
users | Array of User | Yes | Mentioned users |
next_offset | string | Optional | If set, indicates the next offset to use to load more results by invoking messages.getMessageReactionsList. |
Type: messages.MessageReactionsList
Example:
$messages_messageReactionsList = ['_' => 'messages.messageReactionsList', 'count' => int, 'reactions' => [MessagePeerReaction, MessagePeerReaction], 'chats' => [Chat, Chat], 'users' => [User, User], 'next_offset' => 'string'];