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

A section heading, corresponding to the HTML tags <h1>, <h2>, <h3>, <h4>, <h5>, or <h6>.

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

- `type`: Type of the block, always "heading”
- `text`: Text of the block
- `size`: Relative size of the text font; 1-6, 1 is the largest, 6 is the smallest

# `t`

```elixir
@type t() :: %ExGram.Model.RichBlockSectionHeading{
  size: integer(),
  text: ExGram.Model.RichText.t(),
  type: String.t()
}
```

# `decode_as`

---

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