Skip to content

Commit

Permalink
feat: add additional charge point states
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmoller committed Aug 4, 2023
1 parent 06a3e96 commit 3f47446
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions chargepointstate.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@ type ChargePointState string

// Known [ChargePointState] values.
const (
ChargePointStateAvailable ChargePointState = "available"
ChargePointStateBusy ChargePointState = "busy"
ChargePointStateBusyCharging ChargePointState = "busy-charging"
ChargePointStateError ChargePointState = "error"
ChargePointStateDisconnected ChargePointState = "disconnected"
ChargePointStatePassive ChargePointState = "passive"
ChargePointStateOther ChargePointState = "other"
ChargePointStateAvailable ChargePointState = "available"
ChargePointStateBusy ChargePointState = "busy"
ChargePointStateBusyBlocked ChargePointState = "busy-blocked"
ChargePointStateBusyCharging ChargePointState = "busy-charging"
ChargePointStateBusyNonCharging ChargePointState = "busy-non-charging"
ChargePointStateBusyNonReleased ChargePointState = "busy-non-released"
ChargePointStateBusyReserved ChargePointState = "busy-reserved"
ChargePointStateBusyScheduled ChargePointState = "busy-scheduled"
ChargePointStateError ChargePointState = "error"
ChargePointStateDisconnected ChargePointState = "disconnected"
ChargePointStatePassive ChargePointState = "passive"
ChargePointStateOther ChargePointState = "other"
)

0 comments on commit 3f47446

Please sign in to comment.