Files
kittycad.py/kittycad/models/unit_power.py
Jess Frazelle 6b2fe3decb Update api spec (#162)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

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

24 lines
1014 B
Python

from enum import Enum
class UnitPower(str, Enum):
"""The valid types of power units.""" # noqa: E501
"""# British thermal units (BTU) per minute <https://en.wikipedia.org/wiki/British_thermal_unit> """ # noqa: E501
BTU_PER_MINUTE = "btu_per_minute"
"""# Horsepower (hp) <https://en.wikipedia.org/wiki/Horsepower> """ # noqa: E501
HORSEPOWER = "horsepower"
"""# Kilowatts <https://en.wikipedia.org/wiki/Kilowatt> """ # noqa: E501
KILOWATTS = "kilowatts"
"""# Metric horsepower (PS) <https://en.wikipedia.org/wiki/Horsepower#Metric_horsepower> """ # noqa: E501
METRIC_HORSEPOWER = "metric_horsepower"
"""# Microwatts <https://en.wikipedia.org/wiki/Microwatt> """ # noqa: E501
MICROWATTS = "microwatts"
"""# Millwatts <https://en.wikipedia.org/wiki/Milliwatt> """ # noqa: E501
MILLIWATTS = "milliwatts"
"""# Watts <https://en.wikipedia.org/wiki/Watt> """ # noqa: E501
WATTS = "watts"
def __str__(self) -> str:
return str(self.value)