Interface EditMessageChecklist

Edits the message content of a checklist. Returns the edited message after the edit is completed on the server side. Request type for Tdjson#editMessageChecklist.

interface EditMessageChecklist {
    @type: "editMessageChecklist";
    chat_id: number;
    checklist: InputChecklist;
    message_id: number;
    reply_markup: ReplyMarkup;
}

Properties

@type: "editMessageChecklist"
chat_id: number

The chat the message belongs to.

checklist: InputChecklist

The new checklist. If some tasks were completed, this information will be kept.

message_id: number

Identifier of the message. Use messageProperties.can_be_edited to check whether the message can be edited.

reply_markup: ReplyMarkup

The new message reply markup; pass null if none; for bots only.