I have generated the latest API!
This commit is contained in:
10
kittycad/models/unit_power_format.py
Normal file
10
kittycad/models/unit_power_format.py
Normal file
@ -0,0 +1,10 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class UnitPowerFormat(str, Enum):
|
||||
WATT = 'watt'
|
||||
HORSEPOWER = 'horsepower'
|
||||
MILLIWATT = 'milliwatt'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user