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

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

- `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.InputRichBlockPullQuotation{
  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*
