Raw.messages.GetMessageReactionsList

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.TypeInputPeer

    Peer

  • id : number

    Message id

  • reaction : Raw.TypeReaction or undefined

    Get only reactions of this type

  • offset : string or undefined

    Offset for pagination (taken from the nextOffset field of the returned messages.messagereactionslist); empty in the first request.

  • limit : number

    Maximum number of results to return, see pagination

Results

Raw.messages.TypeMessageReactionsList