| from typing import ClassVar | |
| from pydantic import BaseModel | |
| from ocr.api.report.model import ReportModel | |
| class Paging(BaseModel): | |
| pageSize: int | |
| pageIndex: int | |
| totalCount: int | |
| class ReportModelShort(ReportModel): | |
| report: ClassVar[str] | |
| changes: ClassVar[str] | |
| originalText: ClassVar[str] | |