open class Poi : Serializable
POI (Points of Interest) retrieved via a Search request.
Poi()
Empty constructor for the Poi(name: String!, phone: String!, url: String!, categories: Array<String!>!, categorySet: Array<Category!>!, classifications: Array<Classification!>!, brands: Array<String!>!, openingHours: Optional<OpeningHours!>!, timeZone: Optional<DateTimeZone!>!)
Default constructor for the |
var brands: Array<String!>!
The brands this POI belongs to. |
|
var categories: Array<String!>!
The categories this POI belongs to. |
|
var categorySet: Array<Category!>!
The most specific POI categories. |
|
var classifications: Array<Classification!>!
The classifications this POI belongs to. |
|
var name: String!
The name of the POI. |
|
var openingHours: Optional<OpeningHours!>!
The POI's opening hours. |
|
var phone: String!
The phone number of the POI. |
|
var timeZone: Optional<DateTimeZone!>!
The POI's time zone. |
|
var url: String!
The URL address of the POI's website. |
open fun getBrands(): Array<String!>!
Returns the brands this POI belongs to. |
|
open fun getCategories(): Array<String!>!
Returns the categories this POI belongs to. |
|
open fun getCategorySet(): Array<Category!>!
Returns the most specific POI categories. |
|
open fun getClassifications(): Array<Classification!>!
Returns the classifications this POI belongs to. |
|
open fun getName(): String!
Returns the name of the POI. |
|
open fun getOpeningHours(): Optional<OpeningHours!>!
Returns the POI's opening hours. |
|
open fun getPhone(): String!
Returns the phone number of the POI. |
|
open fun getTimeZone(): Optional<DateTimeZone!>!
Returns the POI's time zone. |
|
open fun getUrl(): String!
Returns the URL address of the POI's website. |
|
open fun toString(): String |