ConnectorDetails
class ConnectorDetails(val connectorType: ConnectorType, val ratedPower: Power? = null, val current: ElectricCurrent? = null, val currentType: CurrentType? = null, val voltage: Voltage? = null)
Information about a connector available at a charging park.
Constructors
Link copied to clipboard
constructor(connectorType: ConnectorType, ratedPower: Power? = null, current: ElectricCurrent? = null, currentType: CurrentType? = null, voltage: Voltage? = null)
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun copy(connectorType: ConnectorType = this.connectorType, ratedPower: Power? = this.ratedPower, current: ElectricCurrent? = this.current, currentType: CurrentType? = this.currentType, voltage: Voltage? = this.voltage): ConnectorDetails