Update api spec (#313)
* 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:
committed by
GitHub
parent
ee9f0029f4
commit
121575c8ae
13
kittycad/models/camera_movement.py
Normal file
13
kittycad/models/camera_movement.py
Normal file
@ -0,0 +1,13 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class CameraMovement(str, Enum):
|
||||
"""A type of camera movement applied after certain camera operations""" # noqa: E501
|
||||
|
||||
"""# Adjusts the camera position during the camera operation """ # noqa: E501
|
||||
VANTAGE = "vantage"
|
||||
"""# Keeps the camera position in place """ # noqa: E501
|
||||
NONE = "none"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user