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

Link copied to clipboard

The type of connector.

Link copied to clipboard

The current value of the connector.

Link copied to clipboard

The electric current type of the connector.

Link copied to clipboard
val ratedPower: Power? = null

The rated power of the connector.

Link copied to clipboard
val voltage: Voltage? = null

The voltage of the connector.

Functions

Link copied to clipboard
operator fun component1(): ConnectorType
Link copied to clipboard
operator fun component2(): Power?
Link copied to clipboard
operator fun component3(): ElectricCurrent?
Link copied to clipboard
operator fun component4(): CurrentType?
Link copied to clipboard
operator fun component5(): Voltage?
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
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String