@Beta(2020, 12) data class PoiDetails
Describes the poi details returned by the POI Details endpoint.
id
- Unique ID for the POI details.
rating
- An object that contains rating information.
priceRange
- An object that contains price range information.
socialMedias
- Social media links of the POI.
photos
- Photo ids of the POI.
reviews
- User reviews about the POI.
PoiDetails(id: String, rating: Rating?, priceRange: PriceRange?, socialMedias: List<SocialMedia> = listOf(), photos: List<Photo> = listOf(), reviews: List<Review> = listOf())
Describes the poi details returned by the POI Details endpoint. |
val id: String
Unique ID for the POI details. |
|
val photos: List<Photo>
Photo ids of the POI. |
|
val priceRange: PriceRange?
An object that contains price range information. |
|
val rating: Rating?
An object that contains rating information. |
|
val reviews: List<Review>
User reviews about the POI. |
|
val socialMedias: List<SocialMedia>
Social media links of the POI. |