Files
kittycad.py/kittycad/models/camera_movement.py
zoo-github-actions-auth[bot] 121575c8ae 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>
2024-10-29 17:42:26 -07:00

14 lines
397 B
Python

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)