Interface UpdateChatDefaultDisableNotification

The value of the default disable_notification parameter, used when a message is sent to the chat, was changed. Subtype of Update.

interface UpdateChatDefaultDisableNotification {
    @type: "updateChatDefaultDisableNotification";
    chat_id: number;
    default_disable_notification?: boolean;
}

Properties

@type: "updateChatDefaultDisableNotification"
chat_id: number

Chat identifier.

default_disable_notification?: boolean

The new default_disable_notification value.