Bases: BaseModel
Represents an incident currently affecting the platform.
PARAMETER |
DESCRIPTION |
name
|
TYPE:
str
|
status
|
TYPE:
str
|
shortlink
|
TYPE:
str | None
DEFAULT:
None
|
Source code in werk24/models/v2/status.py
| class SystemStatusIncident(BaseModel):
"""Represents an incident currently affecting the platform."""
name: str
status: str
shortlink: Optional[str] = None
|