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