Class WebDetails
Package com.here.sdk.search
Class WebDetails
- java.lang.Object
-
- com.here.sdk.search.WebDetails
-
public final class WebDetails extends java.lang.ObjectContains information about images, editorials, rating and a urls to them.
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List<WebEditorial>editorialsThe list of editorials associated with the place.java.util.List<WebImage>imagesThe list of images associated with the place.java.util.List<WebRating>ratingsThe list of ratings associated with the place.
-
Constructor Summary
Constructors Constructor Description WebDetails()Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
images
@NonNull public java.util.List<WebImage> images
The list of images associated with the place. The images are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
-
editorials
@NonNull public java.util.List<WebEditorial> editorials
The list of editorials associated with the place. The editorials are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
-
ratings
@NonNull public java.util.List<WebRating> ratings
The list of ratings associated with the place. The ratings are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
-
-