Files
kittycad.py/kittycad/models/unit_force_format.py
Jess Frazelle 95f22c849d Update api spec (#52)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-01-27 14:50:50 -08:00

13 lines
230 B
Python

from enum import Enum
class UnitForceFormat(str, Enum):
NEWTON = 'newton'
POUND = 'pound'
DYNE = 'dyne'
KILOPOND = 'kilopond'
POUNDAL = 'poundal'
def __str__(self) -> str:
return str(self.value)