# HumanResponse

> **Class** in `langgraph.prebuilt`

📖 [View in docs](https://reference.langchain.com/python/langgraph.prebuilt/interrupt/HumanResponse)

The response provided by a human to an interrupt, which is returned when graph execution resumes.

## Signature

```python
HumanResponse()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    type: Literal['accept', 'ignore', 'response', 'edit'],
    args: None | str | ActionRequest,
)
```

| Name | Type |
|------|------|
| `type` | `Literal['accept', 'ignore', 'response', 'edit']` |
| `args` | `None \| str \| ActionRequest` |


## Properties

- `type`
- `args`

---

[View source on GitHub](https://github.com/langchain-ai/langgraph/blob/aa322c13cd5f16a3f6254a931a4104e412cd687c/libs/prebuilt/langgraph/prebuilt/interrupt.py#L87)