Files
kittycad.py/kittycad/models/modeling_app_organization_subscription_tier.py
Jess Frazelle dedbe43c3e bump
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2024-02-24 17:03:55 -08:00

14 lines
378 B
Python

from enum import Enum
class ModelingAppOrganizationSubscriptionTier(str, Enum):
"""The subscription tiers we offer for the Modeling App to organizations.""" # noqa: E501
"""# The team tier. """ # noqa: E501
TEAM = "team"
"""# The enterprise tier. """ # noqa: E501
ENTERPRISE = "enterprise"
def __str__(self) -> str:
return str(self.value)