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

Typed options for Slack `edit_message/4`.

# `t`

```elixir
@type t() :: %Jido.Chat.Slack.EditOptions{
  attachments: nil | nil | any(),
  blocks: nil | nil | any(),
  req: nil | nil | any(),
  token: nil | nil | binary(),
  transport: any()
}
```

# `new`

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

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

# `payload_opts`

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

Builds Slack API payload options for message edits.

# `schema`

Returns the Zoi schema for edit options.

# `transport_opts`

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

Extracts transport options for Slack edit calls.

---

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