Interface GetChatStoryInteractions

Returns interactions with a story posted in a chat. Can be used only if story is posted on behalf of a chat and the user is an administrator in the chat. Request type for Tdjson#getChatStoryInteractions.

interface GetChatStoryInteractions {
    @type: "getChatStoryInteractions";
    limit: number;
    offset: string;
    prefer_forwards?: boolean;
    reaction_type: ReactionType;
    story_id: number;
    story_sender_chat_id: number;
}

Properties

@type: "getChatStoryInteractions"
limit: number

The maximum number of story interactions to return.

offset: string

Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.

prefer_forwards?: boolean

Pass true to get forwards and reposts first, then reactions, then other views; pass false to get interactions sorted just by interaction date.

reaction_type: ReactionType

Pass the default heart reaction or a suggested reaction type to receive only interactions with the specified reaction type; pass null to receive all interactions; reactionTypePaid isn't supported.

story_id: number

Story identifier.

story_sender_chat_id: number

The identifier of the sender of the story.