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; may be 0 or an identifier of a deleted message.

tasks: ChecklistTask[]

List of tasks added to the checklist.