Files
kittycad.py/kittycad/models/unit_concentration_format.py
2022-07-25 22:46:48 +00:00

12 lines
286 B
Python

from enum import Enum
class UnitConcentrationFormat(str, Enum):
PARTS_PER_MILLION = 'parts_per_million'
PARTS_PER_BILLION = 'parts_per_billion'
PARTS_PER_TRILLION = 'parts_per_trillion'
PERCENT = 'percent'
def __str__(self) -> str:
return str(self.value)