Interface ToggleChatGiftNotifications

Toggles whether notifications for new gifts received by a channel chat are sent to the current user; requires can_post_messages administrator right in the chat. Request type for Tdjson#toggleChatGiftNotifications.

interface ToggleChatGiftNotifications {
    @type: "toggleChatGiftNotifications";
    are_enabled?: boolean;
    chat_id: number;
}

Properties

@type: "toggleChatGiftNotifications"
are_enabled?: boolean

Pass true to enable notifications about new gifts owned by the channel chat; pass false to disable the notifications.

chat_id: number

Identifier of the channel chat.