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 undefinedIf set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date.
peer
: Raw.TypeInputPeerChannel
id
: numberStory 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 stories.storyreactionslist); empty in the first request.
limit
: numberMaximum number of results to return, see pagination