Interface EditBusinessMessageChecklist

Edits the content of a checklist in a message sent on behalf of a business account; for bots only. Request type for Tdjson#editBusinessMessageChecklist.

interface EditBusinessMessageChecklist {
    @type: "editBusinessMessageChecklist";
    business_connection_id: string;
    chat_id: number;
    checklist: InputChecklist;
    message_id: number;
    reply_markup: ReplyMarkup;
}

Properties

@type: "editBusinessMessageChecklist"
business_connection_id: string

Unique identifier of business connection on behalf of which the message was sent.

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.

reply_markup: ReplyMarkup

The new message reply markup; pass null if none.