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>
This commit is contained in:
12
kittycad/models/path_component_constraint_bound.py
Normal file
12
kittycad/models/path_component_constraint_bound.py
Normal file
@ -0,0 +1,12 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class PathComponentConstraintBound(str, Enum):
|
||||
"""The path component constraint bounds type""" # noqa: E501
|
||||
|
||||
UNCONSTRAINED = "unconstrained"
|
||||
PARTIALLY_CONSTRAINED = "partially_constrained"
|
||||
FULLY_CONSTRAINED = "fully_constrained"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user