Source code for pydelfini.delfini_core.models.item_status_value

from enum import Enum


[docs] class ItemStatusValue(str, Enum): FAILED = "failed" NOT_APPLICABLE = "not-applicable" OK = "ok" PENDING = "pending" SERVER_ERROR = "server-error" WARNING = "warning" def __str__(self) -> str: return str(self.value)