Interface RemoveNotification

Removes an active notification from notification list. Needs to be called only if the notification is removed by the current user. Request type for Tdjson#removeNotification.

interface RemoveNotification {
    @type: "removeNotification";
    notification_group_id: number;
    notification_id: number;
}

Properties

@type: "removeNotification"
notification_group_id: number

Identifier of notification group to which the notification belongs.

notification_id: number

Identifier of removed notification.