Package dev. inmo. tgbotapi. types. Inline Queries. Input Message Content
Types
Link copied to clipboard
data class InputContactMessageContent(phoneNumber: String, firstName: String, lastName: String?, vcard: String?) : CommonContactData, InputMessageContent
Content copied to clipboard
Link copied to clipboard
class InputInvoiceMessageContent(title: String, description: String, payload: String, providerToken: String, currency: Currency, prices: List<LabeledPrice>, maxTipAmount: Int?, suggestedTipAmounts: List<Int>?, providerData: String?, requireName: Boolean, requirePhoneNumber: Boolean, requireEmail: Boolean, requireShippingAddress: Boolean, shouldSendPhoneNumberToProvider: Boolean, shouldSendEmailToProvider: Boolean, priceDependOnShipAddress: Boolean) : InputMessageContent, CommonSendInvoiceData
Content copied to clipboard
Link copied to clipboard
data class InputLocationMessageContent(latitude: Double, longitude: Double, horizontalAccuracy: Meters?, livePeriod: Seconds?, heading: Degrees?, proximityAlertRadius: Meters?) : Locationed, HorizontallyAccured, ProximityAlertable, Livable, Headed, InputMessageContent
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
data class InputTextMessageContent : TextedOutput, DisableWebPagePreview, InputMessageContent
Content copied to clipboard
Link copied to clipboard
data class InputVenueMessageContent(latitude: Double, longitude: Double, title: String, address: String, foursquareId: FoursquareId?, foursquareType: FoursquareType?, googlePlaceId: GooglePlaceId?, googlePlaceType: GooglePlaceType?) : Locationed, CommonVenueData, InputMessageContent
Content copied to clipboard
Functions
Link copied to clipboard
fun InputTextMessageContent(entities: TextSourcesList, disableWebPagePreview: Boolean? = null): InputTextMessageContent
Content copied to clipboard
fun InputTextMessageContent(text: String, parseMode: ParseMode? = null, disableWebPagePreview: Boolean? = null): InputTextMessageContent
Content copied to clipboard
Represents the InputMessageContent of a text message to be sent as the result of an inline query.