# PendingNotification

> **Class** in `deepagents_cli`

📖 [View in docs](https://reference.langchain.com/python/deepagents-cli/notifications/PendingNotification)

A single notice waiting for user action.

Immutable value object: the registry owns the
key-to-toast-identity binding (see `NotificationRegistry`) so
external callers cannot corrupt click-routing indices by mutating
notifications after construction.

## Signature

```python
PendingNotification(
    self,
    key: str,
    title: str,
    body: str,
    actions: tuple[NotificationAction, ...],
    payload: Payload,
)
```

## Constructors

```python
__init__(
    self,
    key: str,
    title: str,
    body: str,
    actions: tuple[NotificationAction, ...],
    payload: Payload,
) -> None
```

| Name | Type |
|------|------|
| `key` | `str` |
| `title` | `str` |
| `body` | `str` |
| `actions` | `tuple[NotificationAction, ...]` |
| `payload` | `Payload` |


## Properties

- `key`
- `title`
- `body`
- `actions`
- `payload`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/64d45f67c86edb4df2ced0e7b82f1a8fd158ec8c/libs/cli/deepagents_cli/notifications.py#L82)