Interface EmojiReaction

Contains information about an emoji reaction.

interface EmojiReaction {
    @type: "emojiReaction";
    activate_animation: Sticker;
    appear_animation: Sticker;
    around_animation: Sticker;
    center_animation: Sticker;
    effect_animation: Sticker;
    emoji: string;
    is_active?: boolean;
    select_animation: Sticker;
    static_icon: Sticker;
    title: string;
}

Properties

@type: "emojiReaction"
activate_animation: Sticker

Activate animation for the reaction.

appear_animation: Sticker

Appear animation for the reaction.

around_animation: Sticker

Around animation for the reaction; may be null.

center_animation: Sticker

Center animation for the reaction; may be null.

effect_animation: Sticker

Effect animation for the reaction.

emoji: string

Text representation of the reaction.

is_active?: boolean

True, if the reaction can be added to new messages and enabled in chats.

select_animation: Sticker

Select animation for the reaction.

static_icon: Sticker

Static icon for the reaction.

title: string

Reaction title.