Connector

@Serializable
data class Connector(val id: String?, val standard: String, val format: String, val powerType: String, val maxVoltage: Int? = null, val maxAmperage: Int? = null, val lastUpdated: String, val maxElectricPower: Double? = null, val tariffIds: List<String> = emptyList(), val termsAndConditions: String? = null)

A Connector is the socket or cable and plug available for the EV to use. A single Evse may provide multiple Connectors but only one of them can be in use at the same time. A Connector always belongs to an Evse object.

Parameters

id

Identifier of the Connector within the Evse. Two Connectors may have the same id as long as they do not belong to the same Evse object.

standard

The standard of the installed connector.

format

The format (socket/cable) of the installed connector.

powerType

Power type.

maxVoltage

Maximum voltage of the connector (line to neutral for AC_3_PHASE), in volt. For example: DC Chargers might vary the voltage during charging when battery almost full.

maxAmperage

Maximum amperage of the connector, in ampere.

lastUpdated

Timestamp when this Connector was last updated (or created), in UTC.

maxElectricPower

Maximum electric power that can be delivered by this connector, in Watts.

tariffIds

Identifiers of the currently valid charging tariffs. Multiple tariffs are possible, but only one of each Tariff.type can be active at the same time.

termsAndConditions

URL to the operator’s terms and conditions.

Constructors

Link copied to clipboard
constructor(id: String?, standard: String, format: String, powerType: String, maxVoltage: Int? = null, maxAmperage: Int? = null, lastUpdated: String, maxElectricPower: Double? = null, tariffIds: List<String> = emptyList(), termsAndConditions: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val id: String?
Link copied to clipboard
Link copied to clipboard
val maxAmperage: Int? = null
Link copied to clipboard
Link copied to clipboard
val maxVoltage: Int? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard