# NotificationSuppressRequested

> **Class** in `deepagents_code`

📖 [View in docs](https://reference.langchain.com/python/deepagents-code/widgets/notification_center/NotificationSuppressRequested)

Posted when the user picks SUPPRESS from a notification's detail modal.

The center does not dismiss on SUPPRESS because the remaining
notifications should still be reachable in place. The app handles
this message by running the suppress dispatch and calling
`NotificationCenterScreen.reload` with the refreshed registry
snapshot.

## Signature

```python
NotificationSuppressRequested(
    self,
    key: str,
)
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `key` | `str` | Yes | Registry key of the notification being suppressed. |

## Extends

- `Message`

## Constructors

```python
__init__(
    self,
    key: str,
) -> None
```

| Name | Type |
|------|------|
| `key` | `str` |


## Properties

- `key`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/a98f0dfa8d534d8a1885b524632400e52db22ac6/libs/code/deepagents_code/widgets/notification_center.py#L71)