# `Codex.Protocol.RequestUserInput.Question`
[🔗](https://github.com/nshkrdotcom/codex_sdk/blob/v0.16.1/lib/codex/protocol/request_user_input.ex#L9)

A question to present to the user

# `t`

```elixir
@type t() :: %Codex.Protocol.RequestUserInput.Question{
  extra: map(),
  header: String.t(),
  id: String.t(),
  is_other: boolean(),
  is_secret: boolean(),
  options: ([Codex.Protocol.RequestUserInput.Option.t()] | nil) | nil,
  question: String.t()
}
```

# `from_map`

```elixir
@spec from_map(map()) :: t()
```

# `parse`

```elixir
@spec parse(map() | keyword() | t()) ::
  {:ok, t()}
  | {:error,
     {:invalid_request_user_input_question,
      CliSubprocessCore.Schema.error_detail()}}
```

# `parse!`

```elixir
@spec parse!(map() | keyword() | t()) :: t()
```

# `schema`

```elixir
@spec schema() :: Zoi.schema()
```

# `to_map`

```elixir
@spec to_map(t()) :: map()
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
