Layer 227
InputBotInlineMessage
Abstract type representing one of 9 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.InputBotInlineMessage interface.
Use any of the following constructors:
InputBotInlineMessageGame
A game
InputBotInlineMessageMediaAuto
A media
InputBotInlineMessageMediaContact
A contact
InputBotInlineMessageMediaGeo
Geolocation
InputBotInlineMessageMediaInvoice
An invoice
InputBotInlineMessageMediaVenue
Venue
InputBotInlineMessageMediaWebPage
Specifies options that will be used to generate the link preview for the message, or even a standalo
InputBotInlineMessageRichMessage
Input variant of a rich-message inline-bot result, used when registering inline-query answers.
InputBotInlineMessageText
Simple text message
Gogram Example
// InputBotInlineMessage is an interface type // You can use any of the following constructors: var _ tg.InputBotInlineMessage = &tg.InputBotInlineMessageGame{} var _ tg.InputBotInlineMessage = &tg.InputBotInlineMessageMediaAuto{} var _ tg.InputBotInlineMessage = &tg.InputBotInlineMessageMediaContact{} var _ tg.InputBotInlineMessage = &tg.InputBotInlineMessageMediaGeo{} var _ tg.InputBotInlineMessage = &tg.InputBotInlineMessageMediaInvoice{} // ... and 4 more constructors