ChargingConnectorAttributes constructor

ChargingConnectorAttributes(
  1. double powerInKilowatts,
  2. double? currentInAmperes,
  3. double? voltageInVolts,
  4. ChargingSupplyType? supplyType,
  5. ChargingConnectorType? connectorType,
)

Creates a new instance.

  • powerInKilowatts Power supplied by the suggested connector in kW.
  • currentInAmperes Current of the suggested connector in Amperes.
  • voltageInVolts Voltage of the suggested connector in Volts.
  • supplyType Supply type of the suggested connector.
  • connectorType Suggested connector for charging at this station.

Implementation

ChargingConnectorAttributes(this.powerInKilowatts, this.currentInAmperes, this.voltageInVolts, this.supplyType, this.connectorType);