from enum import Enum
[docs]
class SalesInquiryType(str, Enum):
"""The type of sales inquiry for website sales forms.""" # noqa: E501
"""# Inquiries related to pilots (on the enterprise page).""" # noqa: E501
PILOT_INQUIRY = "pilot_inquiry"
"""# General inquiry about the service or product.""" # noqa: E501
GENERAL_INQUIRY = "general_inquiry"
"""# Questions related to sales or purchasing.""" # noqa: E501
SALES_QUESTION = "sales_question"
"""# Inquiry from a developer, typically technical in nature.""" # noqa: E501
DEVELOPER_INQUIRY = "developer_inquiry"
"""# Opportunity for partnership or collaboration.""" # noqa: E501
PARTNERSHIP_OPPORTUNITY = "partnership_opportunity"
"""# Other inquiries related to sales that do not fit predefined categories.""" # noqa: E501
OTHER_SALES_INQUIRY = "other_sales_inquiry"
def __str__(self) -> str:
return str(self.value)