Skip to content

Commit

Permalink
feat(cco-1257): add new charge states
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkema committed Sep 10, 2024
1 parent 467b2aa commit b71af9b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions chargestate.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ type ChargeState string

// Known [ChargeState] values.
const (
ChargeStatePaying ChargeState = "paying"
ChargeStateReserved ChargeState = "reserved"
ChargeStateStarting ChargeState = "starting"
ChargeStateCharging ChargeState = "charging"
Expand All @@ -13,4 +14,7 @@ const (
ChargeStateScheduled ChargeState = "scheduled"
ChargeStateStopped ChargeState = "stopped"
ChargeStateCompleted ChargeState = "completed"
ChargeStateReleasing ChargeState = "releasing"
ChargeStateReleased ChargeState = "released"
ChargeStateOther ChargeState = "other"
)

0 comments on commit b71af9b

Please sign in to comment.