Raw.stories.GetStoryReactionsList

Raw.stories.GetStoryReactionsList

Get the reaction and interaction list of a story posted to a channel, along with the sender of each reaction.

stories.getStoryReactionsList#b9b2881f flags:# forwards_first:flags.2?true peer:InputPeer id:int reaction:flags.0?Reaction offset:flags.1?string limit:int = stories.StoryReactionsList;
export namespace Raw {
  export namespace stories {
    export class GetStoryReactionsList {
      constructor(params: {
        forwardsFirst?: boolean;
        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: 0xb9b2881f

Property

  • forwardsFirst : boolean or undefined

    If set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date.

  • peer : Raw.TypeInputPeer

    Channel

  • id : number

    Story 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 stories.storyreactionslist); empty in the first request.

  • limit : number

    Maximum number of results to return, see pagination

Results

Raw.stories.TypeStoryReactionsList