I have generated the latest API!
This commit is contained in:
9
kittycad/models/unit_charge_format.py
Normal file
9
kittycad/models/unit_charge_format.py
Normal file
@ -0,0 +1,9 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class UnitChargeFormat(str, Enum):
|
||||
COULOMB = 'coulomb'
|
||||
AMPERE_HOUR = 'ampere_hour'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
Reference in New Issue
Block a user