Raw.messages.GetMessageReactionsList
Get message reaction list, along with the sender of each reaction.
messages.getMessageReactionsList#461b3f48 flags:# peer:InputPeer id:int reaction:flags.0?Reaction offset:flags.1?string limit:int = messages.MessageReactionsList;
export namespace Raw {
export namespace messages {
export class GetMessageReactionsList {
constructor(params: {
peer: Raw.TypeInputPeer;
id: number;
reaction?: Raw.TypeReaction;
offset?: string;
limit: number;
}) {}
}
}
}
This is a function constructor, you can use it as method when call invoke
Layer: 185
Constructor ID: 0x461b3f48
Property
peer
: Raw.TypeInputPeerPeer
id
: numberMessage id
reaction
: Raw.TypeReaction or undefinedGet only reactions of this type
offset
: string or undefinedOffset for pagination (taken from the nextOffset field of the returned messages.messagereactionslist); empty in the first request.
limit
: numberMaximum number of results to return, see pagination