AvailabilityDetails

data class AvailabilityDetails(    val available: Int,     val occupied: Int,     val reserved: Int,     val unknown: Int,     val outOfService: Int)

The charging connector availability data.

Parameters

available

The number of charging points that are available.

occupied

The number of charging points that are occupied.

reserved

The number of charging points that are reserved.

unknown

The number of charging points whose availability data is not known.

outOfService

The number of charging points that are out of service.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
fun AvailabilityDetails(    available: Int,     occupied: Int,     reserved: Int,     unknown: Int,     outOfService: Int)

Properties

Link copied to clipboard
val available: Int
Link copied to clipboard
val occupied: Int
Link copied to clipboard
val outOfService: Int
Link copied to clipboard
val reserved: Int
Link copied to clipboard
val unknown: Int