Package-level declarations

Types

Link copied to clipboard
@Serializable
class ChargeHubChargingStation(    val networkName: String,     val adapters: List<ChargeHubAdapter>,     val costDescription: String? = null,     val listPorts: List<EVPorts>? = null,     val stationId: Int? = null,     val paymentEnabled: Boolean? = null,     val accessHours: Map<Int, AccessHours>? = null,     val alwaysOpen: Boolean? = null,     val otherIndicator: String? = null,     val isOffline: Boolean = false,     val isUnknown: Boolean = false)
Link copied to clipboard
data class ChargeHubOutlet(    val connectorType: Int,     val kilowatts: Double?,     val isUnknownPort: Boolean,     val isOfflinePort: Boolean,     val availability: Int,     val totalPort: Int,     val cost: String?)