Raw.messages.GetUnreadMentions

Raw.messages.GetUnreadMentions

Get unread messages where we were mentioned

messages.getUnreadMentions#f107e790 flags:# peer:InputPeer top_msg_id:flags.0?int offset_id:int add_offset:int limit:int max_id:int min_id:int = messages.Messages;
export namespace Raw {
  export namespace messages {
    export class GetUnreadMentions {
      constructor(params: {
        peer: Raw.TypeInputPeer;
        topMsgId?: number;
        offsetId: number;
        addOffset: number;
        limit: number;
        maxId: number;
        minId: number;
      }) {}
    }
  }
}

This is a function constructor, you can use it as method when call invoke

Layer: 185
Constructor ID: 0xf107e790

Property

  • peer : Raw.TypeInputPeer

    Peer where to look for mentions

  • topMsgId : number or undefined

    If set, considers only messages within the specified forum topic

  • offsetId : number

    Offsets for pagination, for more info click here

  • addOffset : number

    Offsets for pagination, for more info click here

  • limit : number

    Maximum number of results to return, see pagination

  • maxId : number

    Maximum message id to return, see pagination

  • minId : number

    Minimum message id to return, see pagination

Results

Raw.messages.TypeMessages