todoList
Represents a todo list ».
type tg.TodoList struct { /* ... */ }
Fields
| Name | Type | Required | Description |
|---|---|---|---|
OthersCanAppend | bool | — | If set, users different from the creator of the list can append items to the list. |
OthersCanComplete | bool | — | If set, users different from the creator of the list can complete items in the list. |
Title | TextWithEntities | yes | Title of the todo list, maximum length equal to todo_title_length_max ». |
List | []TodoItem | yes | Items of the list. |
References
- Official documentation
- Generated Go reference
- TL definition:
todoList#49b92a26