Interface InputMessageReplyToExternalMessage

Describes a message to be replied that is from a different chat or a forum topic; not supported in secret chats. Subtype of InputMessageReplyTo.

interface InputMessageReplyToExternalMessage {
    @type: "inputMessageReplyToExternalMessage";
    chat_id: number;
    message_id: number;
    quote: InputTextQuote;
}

Properties

@type: "inputMessageReplyToExternalMessage"
chat_id: number

The identifier of the chat to which the message to be replied belongs.

message_id: number

The identifier of the message to be replied in the specified chat. A message can be replied in another chat or forum topic only if messageProperties.can_be_replied_in_another_chat.

Quote from the message to be replied; pass null if none.