17
kittycad/models/modeling_app_subscription_tier_name.py
Normal file
17
kittycad/models/modeling_app_subscription_tier_name.py
Normal file
@ -0,0 +1,17 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class ModelingAppSubscriptionTierName(str, Enum):
|
||||
"""An enum representing a Modeling App subscription tier name.""" # noqa: E501
|
||||
|
||||
"""# The free tier. """ # noqa: E501
|
||||
FREE = "free"
|
||||
"""# The pro tier. """ # noqa: E501
|
||||
PRO = "pro"
|
||||
"""# The team tier. """ # noqa: E501
|
||||
TEAM = "team"
|
||||
"""# The enterprise tier. """ # noqa: E501
|
||||
ENTERPRISE = "enterprise"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user