Interface ChatEventEmojiStatusChanged

The chat emoji status was changed. Subtype of ChatEventAction.

interface ChatEventEmojiStatusChanged {
    @type: "chatEventEmojiStatusChanged";
    new_emoji_status: EmojiStatus;
    old_emoji_status: EmojiStatus;
}

Properties

@type: "chatEventEmojiStatusChanged"
new_emoji_status: EmojiStatus

New emoji status; may be null if none.

old_emoji_status: EmojiStatus

Previous emoji status; may be null if none.