I have generated the latest API!
This commit is contained in:
12
kittycad/models/unit_force_format.py
Normal file
12
kittycad/models/unit_force_format.py
Normal file
@ -0,0 +1,12 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class UnitForceFormat(str, Enum):
|
||||
NEWTON = 'newton'
|
||||
POUND = 'pound'
|
||||
DYNE = 'dyne'
|
||||
KILOPOUND = 'kilopound'
|
||||
POUNDAL = 'poundal'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user