# InterruptPayload

> **Class** in `langgraph_sdk`

📖 [View in docs](https://reference.langchain.com/python/langgraph-sdk/_sync/stream/InterruptPayload)

Payload surfaced when the server requests human input for a thread.

## Signature

```python
InterruptPayload()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    interrupt_id: str,
    value: Any,
    namespace: list[str],
)
```

| Name | Type |
|------|------|
| `interrupt_id` | `str` |
| `value` | `Any` |
| `namespace` | `list[str]` |


## Properties

- `interrupt_id`
- `value`
- `namespace`

---

[View source on GitHub](https://github.com/langchain-ai/langgraph/blob/916025d2f6d9f6ddb2628bd248bc4f3db632d9a8/libs/sdk-py/langgraph_sdk/_sync/stream.py#L46)