Interface ChatEventDescriptionChanged

The chat description was changed. Subtype of ChatEventAction.

interface ChatEventDescriptionChanged {
    @type: "chatEventDescriptionChanged";
    new_description: string;
    old_description: string;
}

Properties

@type: "chatEventDescriptionChanged"
new_description: string

New chat description.

old_description: string

Previous chat description.