Interface UpdateChatAddedToList

A chat was added to a chat list. Subtype of Update.

interface UpdateChatAddedToList {
    @type: "updateChatAddedToList";
    chat_id: number;
    chat_list: ChatList;
}

Properties

@type: "updateChatAddedToList"
chat_id: number

Chat identifier.

chat_list: ChatList

The chat list to which the chat was added.