Interface UpdateChatTitle

The title of a chat was changed. Subtype of Update.

interface UpdateChatTitle {
    @type: "updateChatTitle";
    chat_id: number;
    title: string;
}

Properties

Properties

@type: "updateChatTitle"
chat_id: number

Chat identifier.

title: string

The new chat title.