Interface UpdateChatBlockList

A chat was blocked or unblocked. Subtype of Update.

interface UpdateChatBlockList {
    @type: "updateChatBlockList";
    block_list: BlockList;
    chat_id: number;
}

Properties

@type: "updateChatBlockList"
block_list: BlockList

Block list to which the chat is added; may be null if none.

chat_id: number

Chat identifier.