# Interrupt

> **Class** in `langgraph_sdk`

📖 [View in docs](https://reference.langchain.com/python/langgraph-sdk/schema/Interrupt)

Represents an interruption in the execution flow.

## Signature

```python
Interrupt()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    value: Any,
    id: str,
)
```

| Name | Type |
|------|------|
| `value` | `Any` |
| `id` | `str` |


## Properties

- `value`
- `id`

---

[View source on GitHub](https://github.com/langchain-ai/langgraph/blob/0a26b471d34da94186bee8c48d0c463b5a3bd0a0/libs/sdk-py/langgraph_sdk/schema.py#L291)