Interface UpdateMessageSendAcknowledged

A request to send a message has reached the Telegram server. This doesn't mean that the message will be sent successfully. This update is sent only if the option "use_quick_ack" is set to true. This update may be sent multiple times for the same message. Subtype of Update.

interface UpdateMessageSendAcknowledged {
    @type: "updateMessageSendAcknowledged";
    chat_id: number;
    message_id: number;
}

Properties

@type: "updateMessageSendAcknowledged"
chat_id: number

The chat identifier of the sent message.

message_id: number

A temporary message identifier.