Interface ChatEventProfileAccentColorChanged

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

interface ChatEventProfileAccentColorChanged {
    @type: "chatEventProfileAccentColorChanged";
    new_profile_accent_color_id: number;
    new_profile_background_custom_emoji_id: string;
    old_profile_accent_color_id: number;
    old_profile_background_custom_emoji_id: string;
}

Properties

@type: "chatEventProfileAccentColorChanged"
new_profile_accent_color_id: number

New identifier of chat's profile accent color; -1 if none.

new_profile_background_custom_emoji_id: string

New identifier of the custom emoji; 0 if none.

old_profile_accent_color_id: number

Previous identifier of chat's profile accent color; -1 if none.

old_profile_background_custom_emoji_id: string

Previous identifier of the custom emoji; 0 if none.