Documentation - v0.27.1
    Preparing search index...

    Interface InputInlineMessageText

    Inline message containing only text

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

    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"