Interface ChatEventTitleChanged

The chat title was changed. Subtype of ChatEventAction.

interface ChatEventTitleChanged {
    @type: "chatEventTitleChanged";
    new_title: string;
    old_title: string;
}

Properties

@type: "chatEventTitleChanged"
new_title: string

New chat title.

old_title: string

Previous chat title.