I have generated the latest API!
This commit is contained in:
10
kittycad/models/unit_solid_angle_format.py
Normal file
10
kittycad/models/unit_solid_angle_format.py
Normal file
@ -0,0 +1,10 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class UnitSolidAngleFormat(str, Enum):
|
||||
STERADIAN = 'steradian'
|
||||
DEGREE_SQUARED = 'degree_squared'
|
||||
SPAT = 'spat'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user