ChargingProfileDto

@Serializable
data class ChargingProfileDto(val id: Int? = null, val name: String? = null, val maxChargingCurrent: String? = null, val minSOC_pct: Int? = null, val targetSOC_pct: Int? = null, val options: ChargingProfileOptionsDto? = null, val preferredChargingTimes: List<PreferredChargingTimeDto>? = null)

Constructors

Link copied to clipboard
constructor(id: Int? = null, name: String? = null, maxChargingCurrent: String? = null, minSOC_pct: Int? = null, targetSOC_pct: Int? = null, options: ChargingProfileOptionsDto? = null, preferredChargingTimes: List<PreferredChargingTimeDto>? = null)

Properties

Link copied to clipboard
val id: Int?
Link copied to clipboard
@SerialName(value = "maxChargingCurrent")
val maxChargingCurrent: String?
Link copied to clipboard
Link copied to clipboard
val name: String?
Link copied to clipboard
Link copied to clipboard