# `ExGram.Model.RichBlockBlockQuotation`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.67.0/lib/ex_gram.ex#L7193)

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#richblockblockquotation)

- `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.RichBlockBlockQuotation{
  blocks: [ExGram.Model.RichBlock.t()],
  credit: ExGram.Model.RichText.t() | nil,
  type: String.t()
}
```

# `decode_as`

---

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