12 lines
311 B
Python
12 lines
311 B
Python
from pydantic import BaseModel
|
|
from typing import Optional
|
|
from sdk_server.models.config.response_base import ResponseBase
|
|
|
|
class AlertAnnRsp(ResponseBase):
|
|
class Data(BaseModel):
|
|
alert : bool
|
|
alert_id: int
|
|
remind: bool
|
|
extra_remind: bool
|
|
|
|
data: Optional[Data] = None |