Poi

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.

Parameters

name

The name of the Point Of Interest.

phone

The phone number of the Point Of Interest.

brands

The brands this Point Of Interest belongs to.

url

The URL address of the Point Of Interest website.

categorySet

The list of Point Of Interest category IDs.

openingHours

The Point Of Interest opening hours.

classifications

The classifications this Point Of Interest belongs to.

timeZone

The Point Of Interest TimeZone.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

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

Properties

Link copied to clipboard
val brands: List<Brand>
Link copied to clipboard
val categorySet: List<Category>
Link copied to clipboard
val classifications: List<Classification>
Link copied to clipboard
val name: String
Link copied to clipboard
val openingHours: OpeningHours?
Link copied to clipboard
val phone: String
Link copied to clipboard
val timeZone: TimeZone?
Link copied to clipboard
val url: String