# `Jido.Chat.Slack.FetchOptions`
[🔗](https://github.com/agentjido/jido_chat_slack/blob/v1.0.0/lib/jido/chat/slack/fetch_options.ex#L1)

Typed options for Slack history fetch operations.

# `t`

```elixir
@type t() :: %Jido.Chat.Slack.FetchOptions{
  cursor: nil | nil | binary(),
  direction: :forward | :backward,
  inclusive: nil | nil | boolean(),
  limit: integer(),
  req: nil | nil | any(),
  thread_ts: nil | nil | any(),
  token: nil | nil | binary(),
  transport: any()
}
```

# `new`

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

Builds fetch options from a struct, keyword list, or map.

# `schema`

Returns the Zoi schema for fetch options.

# `transport_opts`

```elixir
@spec transport_opts(t()) :: keyword()
```

Extracts transport options for Slack history calls.

---

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