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>
This commit is contained in:
zoo-github-actions-auth[bot]
2024-10-10 16:56:30 -07:00
committed by GitHub
parent fe55464136
commit 79bf86abe7
8 changed files with 1075 additions and 995 deletions

View File

@ -0,0 +1,15 @@
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)