# AskUserRequest

> **Class** in `deepagents_cli`

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

Request payload sent via interrupt when asking the user questions.

## Signature

```python
AskUserRequest()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    type: Literal['ask_user'],
    questions: list[Question],
    tool_call_id: str,
)
```

| Name | Type |
|------|------|
| `type` | `Literal['ask_user']` |
| `questions` | `list[Question]` |
| `tool_call_id` | `str` |


## Properties

- `type`
- `questions`
- `tool_call_id`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/a827cddf72d72e4b17921b8eb445a3bfb0511cb4/libs/cli/deepagents_cli/_ask_user_types.py#L59)