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

An item of a list.

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

- `label`: Label of the item
- `blocks`: The content of the item
- `has_checkbox (optional)`: Optional. True, if the item has a checkbox
- `is_checked (optional)`: Optional. True, if the item has a checked checkbox
- `value (optional)`: Optional. For ordered lists, the numeric value of the item label
- `type (optional)`: Optional. For ordered lists, the type of the item label; must be one of "a” for lowercase letters, "A” for uppercase letters, "i” for lowercase Roman numerals, "I” for uppercase Roman numerals, or "1” for decimal numbers

# `t`

```elixir
@type t() :: %ExGram.Model.RichBlockListItem{
  blocks: [ExGram.Model.RichBlock.t()],
  has_checkbox: boolean() | nil,
  is_checked: boolean() | nil,
  label: String.t(),
  type: String.t() | nil,
  value: integer() | nil
}
```

# `decode_as`

---

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