Interface EditBusinessMessageText

Edits the text of a text or game message sent on behalf of a business account; for bots only. Request type for Tdjson#editBusinessMessageText.

interface EditBusinessMessageText {
    @type: "editBusinessMessageText";
    business_connection_id: string;
    chat_id: number;
    input_message_content: InputMessageContent;
    message_id: number;
    reply_markup: ReplyMarkup;
}

Properties

@type: "editBusinessMessageText"
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.

input_message_content: InputMessageContent

New text content of the message. Must be of type inputMessageText.

message_id: number

Identifier of the message.

reply_markup: ReplyMarkup

The new message reply markup; pass null if none.