Source code for kittycad.models.modeling_app_event_type

from enum import Enum


[docs] class ModelingAppEventType(str, Enum): """Type for modeling-app events""" # noqa: E501 """# This event is sent before the modeling app or project is closed. The attachment should contain the contents of the most recent successful compile. """ # noqa: E501 SUCCESSFUL_COMPILE_BEFORE_CLOSE = "successful_compile_before_close"
[docs] def __str__(self) -> str: return str(self.value)