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

An item of a list to be sent.

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

- `blocks`: The content of the item
- `has_checkbox (optional)`: Optional. Pass True if the item has a checkbox
- `is_checked (optional)`: Optional. Pass 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.InputRichBlockListItem{
  blocks: [ExGram.Model.InputRichBlock.t()],
  has_checkbox: boolean() | nil,
  is_checked: boolean() | nil,
  type: String.t() | nil,
  value: integer() | nil
}
```

# `decode_as`

---

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