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:
committed by
GitHub
parent
fe55464136
commit
79bf86abe7
15
kittycad/models/modeling_app_share_links.py
Normal file
15
kittycad/models/modeling_app_share_links.py
Normal 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)
|
Reference in New Issue
Block a user