I have generated the latest API!
This commit is contained in:
11
kittycad/models/unit_data_format.py
Normal file
11
kittycad/models/unit_data_format.py
Normal file
@ -0,0 +1,11 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class UnitDataFormat(str, Enum):
|
||||
BYTE = 'byte'
|
||||
EXABYTE = 'exabyte'
|
||||
BIT = 'bit'
|
||||
EXABIT = 'exabit'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user