Interface StoryAreaTypeSuggestedReaction

An area pointing to a suggested reaction. App needs to show a clickable reaction on the area and call setStoryReaction when the are is clicked. Subtype of StoryAreaType.

interface StoryAreaTypeSuggestedReaction {
    @type: "storyAreaTypeSuggestedReaction";
    is_dark?: boolean;
    is_flipped?: boolean;
    reaction_type: ReactionType;
    total_count: number;
}

Properties

@type: "storyAreaTypeSuggestedReaction"
is_dark?: boolean

True, if reaction has a dark background.

is_flipped?: boolean

True, if reaction corner is flipped.

reaction_type: ReactionType

Type of the reaction.

total_count: number

Number of times the reaction was added.