Layer 227
constructor
inputBotInlineMessageMediaAuto#3380c786 flags:# invert_media:flags.3?true message:string entities:flags.1?Vector<MessageEntity> reply_markup:flags.2?ReplyMarkup = InputBotInlineMessage;

Parameters

Name Type Description
InvertMedia flags .3? true If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.
Message string Caption
Entities flags .1? Vector < MessageEntity > Message entities for styled text
ReplyMarkup flags .2? ReplyMarkup Inline keyboard

Gogram Example

// Creating InputBotInlineMessageMediaAuto constructor
obj := &tg.InputBotInlineMessageMediaAuto{
    InvertMedia: nil,
    Message: "Hello, World!",
    Entities: nil,
    ReplyMarkup: nil,
}