PlaceRequest

data class PlaceRequest @JvmOverloads constructor(    val location: GeoCoordinates,     val categoryTags: List<String>,     val radius: Int,     val boundary: GeoBoundingBox? = null,     val maxResultCount: Int = 10,     val languageTag: String? = null)

Constructors

Link copied to clipboard
fun PlaceRequest(    location: GeoCoordinates,     categoryTags: List<String>,     radius: Int,     boundary: GeoBoundingBox? = null,     maxResultCount: Int = 10,     languageTag: String? = null)

Properties

Link copied to clipboard
val boundary: GeoBoundingBox? = null
Link copied to clipboard
val categoryTags: List<String>
Link copied to clipboard
val languageTag: String? = null
Link copied to clipboard
val location: GeoCoordinates
Link copied to clipboard
val maxResultCount: Int = 10
Link copied to clipboard
val radius: Int