# `ExGram.Model.InputRichBlockDetails`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.69.0/lib/ex_gram.ex#L7711)

An expandable block for details disclosure, corresponding to the HTML tag <details>.

Check the [documentation of this model on Telegram Bot API](https://core.telegram.org/bots/api#inputrichblockdetails)

- `type`: Type of the block, always "details”
- `summary`: Always shown summary of the block
- `blocks`: Content of the block
- `is_open (optional)`: Optional. Pass True if the content of the block is visible by default

# `t`

```elixir
@type t() :: %ExGram.Model.InputRichBlockDetails{
  blocks: [ExGram.Model.InputRichBlock.t()],
  is_open: boolean() | nil,
  summary: ExGram.Model.RichText.t(),
  type: String.t()
}
```

# `decode_as`

---

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