Files
kittycad.py/kittycad/models/modeling_app_share_links.py
zoo-github-actions-auth[bot] 79bf86abe7 Update api spec (#302)
* 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-10 16:56:30 -07:00

16 lines
513 B
Python

from enum import Enum
class ModelingAppShareLinks(str, Enum):
"""The options for sharable links through the modeling app.""" # noqa: E501
"""# Public. """ # noqa: E501
PUBLIC = "public"
"""# Password protected. """ # noqa: E501
PASSWORD_PROTECTED = "password_protected"
"""# Organization only. Links can be made only available to members of the organization. """ # noqa: E501
ORGANIZATION_ONLY = "organization_only"
def __str__(self) -> str:
return str(self.value)