Files
kittycad.py/kittycad/models/modeling_app_individual_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
353 B
Python

from enum import Enum
class ModelingAppIndividualSubscriptionTier(str, Enum):
"""The subscription tiers we offer for the Modeling App to individuals.""" # noqa: E501
"""# The free tier. """ # noqa: E501
FREE = "free"
"""# The pro tier. """ # noqa: E501
PRO = "pro"
def __str__(self) -> str:
return str(self.value)