Interface MessageChecklistTasksDone

Some tasks from a checklist were marked as done or not done. Subtype of MessageContent.

interface MessageChecklistTasksDone {
    @type: "messageChecklistTasksDone";
    checklist_message_id: number;
    marked_as_done_task_ids: number[];
    marked_as_not_done_task_ids: number[];
}

Properties

@type: "messageChecklistTasksDone"
checklist_message_id: number

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

marked_as_done_task_ids: number[]

Identifiers of tasks that were marked as done.

marked_as_not_done_task_ids: number[]

Identifiers of tasks that were marked as not done.