Interface AddChecklistTasks

Adds tasks to a checklist in a message. Request type for Tdjson#addChecklistTasks.

interface AddChecklistTasks {
    @type: "addChecklistTasks";
    chat_id: number;
    message_id: number;
    tasks: InputChecklistTask[];
}

Properties

@type: "addChecklistTasks"
chat_id: number

Identifier of the chat with the message.

message_id: number

Identifier of the message containing the checklist. Use messageProperties.can_add_tasks to check whether the tasks can be added.

List of added tasks.