Interface BusinessMessage

Describes a message from a business account as received by a bot.

interface BusinessMessage {
    @type: "businessMessage";
    message: Message;
    reply_to_message: Message;
}

Properties

@type: "businessMessage"
message: Message

The message.

reply_to_message: Message

Message that is replied by the message in the same chat; may be null if none.