# `Jido.Chat.OptionsLoadResult`
[🔗](https://github.com/agentjido/jido_chat/blob/v1.2.0/lib/jido/chat/options_load_result.ex#L1)

Successful, typed output from a dynamic select option loader.

The core does not set a provider maximum for option or group counts. An
adapter can apply its own limits before it renders this result.

# `t`

```elixir
@type t() :: %Jido.Chat.OptionsLoadResult{
  cursor: nil | nil | binary(),
  has_more: boolean(),
  metadata: map(),
  option_groups: [any()],
  options: [any()]
}
```

# `from_map`

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

Builds options-load output from serialized data.

# `new`

```elixir
@spec new(t() | map()) :: t()
```

Creates successful options-load output.

# `ok`

```elixir
@spec ok([Jido.Chat.OptionsLoadOption.t() | map()], keyword() | map()) :: t()
```

Builds output from an option list.

# `schema`

Returns the schema for options-load output.

# `to_map`

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

Serializes options-load output.

---

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