init
This commit is contained in:
12
sdk_server/models/config/alert_ann_data.py
Normal file
12
sdk_server/models/config/alert_ann_data.py
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
||||
Reference in New Issue
Block a user