Venue

@Serializable
data class Venue(val location: Location, val title: String, val address: String, val foursquareId: String? = null, val foursquareType: String? = null, val googlePlaceId: String? = null, val googlePlaceType: String? = null)

This object represents a venue.

Api reference

Constructors

Link copied to clipboard
constructor(location: Location, title: String, address: String, foursquareId: String? = null, foursquareType: String? = null, googlePlaceId: String? = null, googlePlaceType: String? = null)

Properties

Link copied to clipboard

Address of the venue

Link copied to clipboard
val foursquareId: String? = null

Optional. Foursquare identifier of the venue

Link copied to clipboard
val foursquareType: String? = null

Optional. Foursquare type of the venue. (For example, "arts_entertainment/default", "arts_entertainment/aquarium" or "food/icecream".)

Link copied to clipboard
val googlePlaceId: String? = null

Optional. Google Places identifier of the venue

Link copied to clipboard
val googlePlaceType: String? = null

Optional. Google Places type of the venue. (See supported types.)

Link copied to clipboard

Venue location. Can't be a live location

Link copied to clipboard

Name of the venue