Poi

data class Poi(    val name: Set<String>,     val phones: Set<String> = emptySet(),     val emails: Set<String> = emptySet(),     val brands: Set<Brand> = emptySet(),     val urls: Set<String> = emptySet(),     val categories: Set<Category> = emptySet(),     val openingHours: OpeningHours? = null,     val timeZone: TimeZone? = null)

Point Of Interest retrieved via a Search API call.

Parameters

name

The name of the Point Of Interest.

phones

The phone numbers of the Point Of Interest.

emails

The email addresses of the Point Of Interest.

brands

The brands this Point Of Interest belongs to.

urls

The URL addresses of the Point Of Interest website.

categories

The list of Point Of Interest category IDs.

openingHours

The Point Of Interest's opening hours in its local time zone.

timeZone

The Point Of Interest TimeZone.

Constructors

Link copied to clipboard
fun Poi(    name: Set<String>,     phones: Set<String> = emptySet(),     emails: Set<String> = emptySet(),     brands: Set<Brand> = emptySet(),     urls: Set<String> = emptySet(),     categories: Set<Category> = emptySet(),     openingHours: OpeningHours? = null,     timeZone: TimeZone? = null)

Properties

Link copied to clipboard
val brands: Set<Brand>
Link copied to clipboard
val categories: Set<Category>
Link copied to clipboard
val emails: Set<String>
Link copied to clipboard
val name: Set<String>
Link copied to clipboard
val openingHours: OpeningHours? = null
Link copied to clipboard
val phones: Set<String>
Link copied to clipboard
val timeZone: TimeZone? = null
Link copied to clipboard
val urls: Set<String>