*This object represents the content of a message to be sent as a result of an inline query. Telegram clients currently support the following 5 types: InputTextMessageContent InputLocationMessageContent InputVenueMessageContent InputContactMessageContent InputInvoiceMessageContent*/
| 8 | InputContactMessageContent |
| 9 | InputInvoiceMessageContent*/ |
| 10 | type InputMessageContent interface { |
| 11 | /*Returns the full name of this object*/ |
| 12 | GetType() string |
| 13 | } |
| 14 | |
| 15 | /*Represents the content of a text message to be sent as the result of an inline query.*/ |
| 16 | type InputTextMessageContent struct { |
nothing calls this directly
no outgoing calls
no test coverage detected