# `Jido.Chat.Telegram.CallbackAnswerOptions`
[🔗](https://github.com/agentjido/jido_chat_telegram/blob/v1.0.0/lib/jido/chat/telegram/callback_answer_options.ex#L1)

Typed options for Telegram `answer_callback_query/2`.

# `t`

```elixir
@type t() :: %Jido.Chat.Telegram.CallbackAnswerOptions{
  cache_time: nil | integer(),
  check_params: nil | boolean(),
  debug: nil | boolean(),
  ex_gram_adapter: nil | any(),
  ex_gram_module: nil | any(),
  show_alert: nil | boolean(),
  text: nil | binary(),
  token: nil | binary(),
  transport: any(),
  url: nil | binary()
}
```

# `new`

Builds typed callback answer options from keyword/map/struct input.

# `payload_opts`

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

Builds Telegram API payload options for `answerCallbackQuery`.

# `schema`

Returns the Zoi schema for callback answer options.

# `transport_opts`

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

Builds transport-level options consumed by `ExGramClient`.

---

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