WebDetails
public struct WebDetails : Hashable
Contains information about images, editorials, rating and a urls to them.
-
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.
Declaration
Swift
public var images: [WebImage] -
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.
Declaration
Swift
public var editorials: [WebEditorial] -
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.
Declaration
Swift
public var ratings: [WebRating] -
Creates a new instance.
Declaration
Swift
public init(images: [WebImage] = [], editorials: [WebEditorial] = [], ratings: [WebRating] = [])