Interface StoryInteractions

Represents a list of interactions with a story.

interface StoryInteractions {
    @type: "storyInteractions";
    interactions: StoryInteraction[];
    next_offset: string;
    total_count: number;
    total_forward_count: number;
    total_reaction_count: number;
}

Properties

@type: "storyInteractions"
interactions: StoryInteraction[]

List of story interactions.

next_offset: string

The offset for the next request. If empty, then there are no more results.

total_count: number

Approximate total number of interactions found.

total_forward_count: number

Approximate total number of found forwards and reposts; always 0 for chat stories.

total_reaction_count: number

Approximate total number of found reactions; always 0 for chat stories.