Interface ChatEventAccentColorChanged

The chat accent color or background custom emoji were changed. Subtype of ChatEventAction.

interface ChatEventAccentColorChanged {
    @type: "chatEventAccentColorChanged";
    new_accent_color_id: number;
    new_background_custom_emoji_id: string;
    old_accent_color_id: number;
    old_background_custom_emoji_id: string;
}

Properties

@type: "chatEventAccentColorChanged"
new_accent_color_id: number

New identifier of chat accent color.

new_background_custom_emoji_id: string

New identifier of the custom emoji; 0 if none.

old_accent_color_id: number

Previous identifier of chat accent color.

old_background_custom_emoji_id: string

Previous identifier of the custom emoji; 0 if none.