Package com.tomtom.sdk.search.client.model.poi

Types

Link copied to clipboard
data class Brand(val name: String)

A Points of Interest brand.

Link copied to clipboard
data class Category(val id: Long)

A Points of Interest category.

Link copied to clipboard
data class Classification(val code: String, val names: List<ClassificationName>)

A Points of Interest classification.

Link copied to clipboard
data class ClassificationName(val localeName: String, val name: String)

A Points of Interest classification name.

Link copied to clipboard
data class Poi(    val name: String,     val phone: String = "",     val brands: List<Brand> = emptyList(),     val url: String = "",     val categorySet: List<Category> = emptyList(),     val openingHours: OpeningHours?,     val classifications: List<Classification> = emptyList(),     val timeZone: TimeZone?)

Point Of Interest retrieved via a Search API call.

Link copied to clipboard
enum PoiRelationType : Enum<PoiRelationType>

Point Of Interest relationship type.

Link copied to clipboard
data class PopularHour(val dayOfWeek: Int, val timeRanges: List<TimeRange>)

Returns the most popular times for people visiting the POI on the given day of the week.

Link copied to clipboard
data class PriceRange(    val value: Double,     val label: String,     val minValue: Double,     val maxValue: Double)

An object that contains price range information.

Link copied to clipboard
data class Rating(    val totalRatings: Int,     val value: Double,     val minValue: Double,     val maxValue: Double)

An object that contains rating information.

Link copied to clipboard
data class RelatedPoi(val relationType: PoiRelationType, val id: String)

Information about the related Point of Interest.

Link copied to clipboard
enum RequestedPoiRelationType : Enum<RequestedPoiRelationType>

Point Of Interest relationship type.

Link copied to clipboard
data class Review(val text: String, val date: Date?)

User review about the POI.

Link copied to clipboard
data class SocialMedia(val name: String, val url: URL)

Social media links of the POI.