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

Typed options for Slack `post_ephemeral/4`.

# `t`

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

# `new`

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

Builds ephemeral message options from a struct, keyword list, or map.

# `payload_opts`

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

Builds Slack API payload options for ephemeral posts.

# `schema`

Returns the Zoi schema for ephemeral message options.

# `transport_opts`

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

Extracts transport options for Slack ephemeral calls.

---

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