I have generated the latest API!
This commit is contained in:
24
kittycad/models/unit_metric_power.py
Normal file
24
kittycad/models/unit_metric_power.py
Normal file
@ -0,0 +1,24 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class UnitMetricPower(str, Enum):
|
||||
ATTO = 'atto'
|
||||
FEMTO = 'femto'
|
||||
PICO = 'pico'
|
||||
NANO = 'nano'
|
||||
MICRO = 'micro'
|
||||
MILLI = 'milli'
|
||||
CENTI = 'centi'
|
||||
DECI = 'deci'
|
||||
METRIC_UNIT = 'metric_unit'
|
||||
DECA = 'deca'
|
||||
HECTO = 'hecto'
|
||||
KILO = 'kilo'
|
||||
MEGA = 'mega'
|
||||
GIGA = 'giga'
|
||||
TERA = 'tera'
|
||||
PETA = 'peta'
|
||||
EXA = 'exa'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user