Interface InputMessageReplyToMessage

Contains information about the message or the story to be replied. Subtype of InputMessageReplyTo.

interface InputMessageReplyToMessage {
    @type: "inputMessageReplyToMessage";
    message_id: number;
    quote: InputTextQuote;
}

Properties

@type: "inputMessageReplyToMessage"
message_id: number

The identifier of the message to be replied in the same chat and forum topic. A message can be replied in the same chat and forum topic only if messageProperties.can_be_replied.

Quote from the message to be replied; pass null if none. Must always be null for replies in secret chats.