Interface InputInlineMessageText

Inline message containing only text

interface InputInlineMessageText {
    disableWebPreview?: boolean;
    invertMedia?: boolean;
    replyMarkup?: ReplyMarkup;
    text: InputText;
    type: "text";
}

Properties

disableWebPreview?: boolean

Whether to disable links preview in this message

invertMedia?: boolean

Whether to invert media position.

Currently only supported for web previews and makes the client render the preview above the caption and not below.

replyMarkup?: ReplyMarkup

Message reply markup

text: InputText

Text of the message

type: "text"