BusinessDetails
public struct BusinessDetails : Hashable
Contains place details such as contacts, opening hours and some electro vehicle info.
-
The list of contact information of the place.
Declaration
Swift
public var contacts: [Contact] -
The list of opening hours information of the place (not available in result of suggest request).
Declaration
Swift
public var openingHours: [OpeningHours] -
EV charging pool details. It is available only for a place that is a charging pool for electric vehicles. Charging stations data are only available to users with valid contracts with HERE.
Declaration
Swift
public var evChargingPool: EVChargingPool? -
Creates a new instance.
Declaration
Swift
public init(contacts: [Contact] = [], openingHours: [OpeningHours] = [], evChargingPool: EVChargingPool? = nil)