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

A collage, corresponding to the custom HTML tag <tg-collage>.

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

- `type`: Type of the block, always "collage”
- `blocks`: Elements of the collage
- `caption (optional)`: Optional. Caption of the block

# `t`

```elixir
@type t() :: %ExGram.Model.InputRichBlockCollage{
  blocks: [ExGram.Model.InputRichBlock.t()],
  caption: ExGram.Model.RichBlockCaption.t() | nil,
  type: String.t()
}
```

# `decode_as`

---

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