Source code for kittycad.models.modeling_app_organization_subscription_tier

from enum import Enum


[docs] 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"
[docs] def __str__(self) -> str: return str(self.value)