Venue

@Serializable
@SerialName(value = "venue")
data class Venue(    val id: String,     val longitude: Float,     val latitude: Float,     val title: String,     val address: String,     val foursquareId: String? = null,     val foursquareType: String? = null,     val googlePlaceId: String? = null,     val googlePlaceType: String? = null,     val replyMarkup: InlineKeyboardMarkup? = null,     val inputMessageContent: InputMessageContent? = null,     val thumbnailUrl: String? = null,     val thumbnailWidth: Int? = null,     val thumbnailHeight: Int? = null) : InlineQueryResult(source)

Constructors

Link copied to clipboard
constructor(    id: String,     longitude: Float,     latitude: Float,     title: String,     address: String,     foursquareId: String? = null,     foursquareType: String? = null,     googlePlaceId: String? = null,     googlePlaceType: String? = null,     replyMarkup: InlineKeyboardMarkup? = null,     inputMessageContent: InputMessageContent? = null,     thumbnailUrl: String? = null,     thumbnailWidth: Int? = null,     thumbnailHeight: Int? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val foursquareId: String? = null
Link copied to clipboard
val foursquareType: String? = null
Link copied to clipboard
val googlePlaceId: String? = null
Link copied to clipboard
val googlePlaceType: String? = null
Link copied to clipboard
val id: String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val thumbnailHeight: Int? = null
Link copied to clipboard
val thumbnailUrl: String? = null
Link copied to clipboard
val thumbnailWidth: Int? = null
Link copied to clipboard
Link copied to clipboard