# `ExGram.Model.InputChecklistTask`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.64.0/lib/ex_gram.ex#L4072)

Describes a task to add to a checklist.

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

- `id`: Unique identifier of the task; must be positive and unique among all task identifiers currently present in the checklist
- `text`: Text of the task; 1-100 characters after entities parsing
- `parse_mode (optional)`: Optional. Mode for parsing entities in the text. See formatting options for more details.
- `text_entities (optional)`: Optional. List of special entities that appear in the text, which can be specified instead of parse_mode. Currently, only bold, italic, underline, strikethrough, spoiler, and custom_emoji entities are allowed.

# `t`

```elixir
@type t() :: %ExGram.Model.InputChecklistTask{
  id: integer(),
  parse_mode: String.t() | nil,
  text: String.t(),
  text_entities: [ExGram.Model.MessageEntity.t()] | nil
}
```

# `decode_as`

---

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