Files
HospitalAssistantBackend/src/apps/users/v1/schema.py
Miwory ce8b0238ce
All checks were successful
Build And Push / publish (push) Successful in 2m44s
Добавлен роутер на скачивание файлов
2026-04-14 14:54:40 +03:00

40 lines
635 B
Python

from typing import TypedDict
from pydantic import BaseModel
class AEMDFile(TypedDict):
emdrId: str
localUid: str
registrationDate: str
registrationDateTime: str
storeTillDate: str
DocKind: str
IsSemd: bool
class AEMDReturnFile(TypedDict):
emdrId: str
registrationDate: str
DocKind: str
IsSemd: bool
isCached: bool
class AEMDDemandContent(TypedDict):
messageId: str
emdrId: str
vitaId: str
class Notifications(TypedDict):
notifications: list[dict[str, str | bool]]
class Complaints(BaseModel):
complaints: str
class DownloadFile(BaseModel):
link: str