tbapi.api.adapters.alert_type
1from enum import Enum 2from Tickblaze.Scripts.Api.Adapters import AlertType as _AlertType 3 4class AlertType(Enum): 5 """Enum representing different types of alerts.""" 6 7 Good = 0 8 """Represents a good alert.""" 9 10 Bad = 1 11 """Represents a bad alert.""" 12 13 Neutral = 2 14 """Represents a neutral alert.""" 15 16 Important = 3 17 """Represents an important alert."""
class
AlertType(enum.Enum):
7class AlertType(Enum): 8 """Enum representing different types of alerts.""" 9 10 Good = 0 11 """Represents a good alert.""" 12 13 Bad = 1 14 """Represents a bad alert.""" 15 16 Neutral = 2 17 """Represents a neutral alert.""" 18 19 Important = 3 20 """Represents an important alert."""
Enum representing different types of alerts.