6 lines
145 B
Python
6 lines
145 B
Python
from pydantic import BaseModel, Field
|
|
|
|
|
|
class AlertResolutionRequest(BaseModel):
|
|
resolution: str = Field(..., min_length=1, max_length=1000)
|