Interface UpdateChatHasProtectedContent

A chat content was allowed or restricted for saving. Subtype of Update.

interface UpdateChatHasProtectedContent {
    @type: "updateChatHasProtectedContent";
    chat_id: number;
    has_protected_content?: boolean;
}

Properties

@type: "updateChatHasProtectedContent"
chat_id: number

Chat identifier.

has_protected_content?: boolean

New value of has_protected_content.