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

A quotation with centered text, loosely corresponding to the HTML tag <aside>.

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

- `type`: Type of the block, always "pullquote”
- `text`: Text of the block
- `credit (optional)`: Optional. Credit of the block

# `t`

```elixir
@type t() :: %ExGram.Model.RichBlockPullQuotation{
  credit: ExGram.Model.RichText.t() | nil,
  text: ExGram.Model.RichText.t(),
  type: String.t()
}
```

# `decode_as`

---

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