Interface MessageChecklistTasksAdded

Some tasks were added to a checklist. Subtype of MessageContent.

interface MessageChecklistTasksAdded {
    @type: "messageChecklistTasksAdded";
    checklist_message_id: number;
    tasks: ChecklistTask[];
}

Properties

@type: "messageChecklistTasksAdded"
checklist_message_id: number

Identifier of the message with the checklist; can be 0 if the message was deleted.

tasks: ChecklistTask[]

List of tasks added to the checklist.