interface InputMediaTodoList {
    items: InputText[];
    othersCanAppend?: boolean;
    othersCanComplete?: boolean;
    title: InputText;
    type: "todo";
}

Properties

items: InputText[]

Items in the list

othersCanAppend?: boolean

Whether other people in the chat can add items to the list

othersCanComplete?: boolean

Whether other people in the chat can mark items as completed in the list

title: InputText

Title of the list

type: "todo"