Aggregated availability count for charging points or connectors.
Provides a summary of how many units are in each operational status.
Breakdown of units by operational status.
Maps each status to the number of units in that status. Only includes statuses that have at least one unit.
statusCounts: { Available: 5, Occupied: 2, OutOfService: 1} Copy
statusCounts: { Available: 5, Occupied: 2, OutOfService: 1}
const availability: ChargingPointAvailability = { count: 10, // Total of 10 charging points statusCounts: { Available: 6, Occupied: 3, OutOfService: 1 }}; Copy
const availability: ChargingPointAvailability = { count: 10, // Total of 10 charging points statusCounts: { Available: 6, Occupied: 3, OutOfService: 1 }};
Aggregated availability count for charging points or connectors.
Provides a summary of how many units are in each operational status.