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

Typed options for Telegram `send_photo/3`.

# `t`

```elixir
@type t() :: %Jido.Chat.Telegram.PhotoOptions{
  caption: nil | binary(),
  check_params: nil | boolean(),
  debug: nil | boolean(),
  disable_notification: nil | boolean(),
  ex_gram_adapter: nil | any(),
  ex_gram_module: nil | any(),
  parse_mode: nil | binary(),
  reply_markup: nil | any(),
  reply_to_message_id: nil | any(),
  thread_id: nil | any(),
  token: nil | binary(),
  transport: any()
}
```

# `new`

Builds typed photo options from keyword/map/struct input.

# `payload_opts`

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

Builds Telegram API payload options for `sendPhoto`.

# `schema`

Returns the Zoi schema for photo 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*
