ChecklistTasksAdded¶
- class telegram.ChecklistTasksAdded(tasks, checklist_message=None, *, api_kwargs=None)[source]¶
Bases:
telegram.TelegramObjectDescribes a service message about tasks added to a checklist.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
tasksare equal.Available In
Added in version 22.3.
- Parameters:
checklist_message (
telegram.Message, optional) – Message containing the checklist to which tasks were added. Note that the ~:class:telegram.Message object in this field will not contain thereply_to_messagefield even if it itself is a reply.tasks (Sequence[
telegram.ChecklistTask]) – List of tasks added to the checklist
- checklist_message[source]¶
Optional. Message containing the checklist to which tasks were added. Note that the ~:class:telegram.Message object in this field will not contain the
reply_to_messagefield even if it itself is a reply.- Type:
- tasks[source]¶
List of tasks added to the checklist
- Type:
Tuple[
telegram.ChecklistTask]