Interface UpdateMessageSendFailed

A message failed to send. Be aware that some messages being sent can be irrecoverably deleted, in which case updateDeleteMessages will be received instead of this update. Subtype of Update.

interface UpdateMessageSendFailed {
    @type: "updateMessageSendFailed";
    error: Error;
    message: Message;
    old_message_id: number;
}

Properties

@type: "updateMessageSendFailed"
error: Error

The cause of the message sending failure.

message: Message

The failed to send message.

old_message_id: number

The previous temporary message identifier.