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

Describes a checklist.

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

- `title`: Title of the checklist
- `tasks`: List of tasks in the checklist
- `title_entities (optional)`: Optional. Special entities that appear in the checklist title
- `others_can_add_tasks (optional)`: Optional. True, if users other than the creator of the list can add tasks to the list
- `others_can_mark_tasks_as_done (optional)`: Optional. True, if users other than the creator of the list can mark tasks as done or not done

# `t`

```elixir
@type t() :: %ExGram.Model.Checklist{
  others_can_add_tasks: boolean() | nil,
  others_can_mark_tasks_as_done: boolean() | nil,
  tasks: [ExGram.Model.ChecklistTask.t()],
  title: String.t(),
  title_entities: [ExGram.Model.MessageEntity.t()] | nil
}
```

# `decode_as`

---

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