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

A block quotation, corresponding to the HTML tag <blockquote>.

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

- `type`: Type of the block, always "blockquote”
- `blocks`: Content of the block
- `credit (optional)`: Optional. Credit of the block

# `t`

```elixir
@type t() :: %ExGram.Model.InputRichBlockBlockQuotation{
  blocks: [ExGram.Model.InputRichBlock.t()],
  credit: ExGram.Model.RichText.t() | nil,
  type: String.t()
}
```

# `decode_as`

---

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