Layer 220
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:
InputBotInlineMessageText
Simple text message
InputBotInlineMessageMediaAuto
A media
InputBotInlineMessageMediaGeo
Geolocation
InputBotInlineMessageGame
A game
InputBotInlineMessageMediaContact
A contact
InputBotInlineMessageMediaInvoice
An invoice
InputBotInlineMessageMediaWebPage
Specifies options that will be used to generate the link preview for the message, or even a standalo
InputBotInlineMessageMediaVenue
Venue
Gogram Example
// InputBotInlineMessage is an interface type // You can use any of the following constructors: var _ tg.InputBotInlineMessage = &tg.InputBotInlineMessageText{} var _ tg.InputBotInlineMessage = &tg.InputBotInlineMessageMediaAuto{} var _ tg.InputBotInlineMessage = &tg.InputBotInlineMessageMediaGeo{} var _ tg.InputBotInlineMessage = &tg.InputBotInlineMessageGame{} var _ tg.InputBotInlineMessage = &tg.InputBotInlineMessageMediaContact{} // ... and 3 more constructors