| 19 | |
| 20 | |
| 21 | class BaseListResponse(BaseModel): |
| 22 | status: str = Field("success") |
| 23 | data: Any |
| 24 | fetched_count: int |
| 25 | total_count: Optional[int] = Field(None) |
| 26 | has_more: Optional[bool] = Field(None) |
| 27 | |
| 28 | |
| 29 | class BaseListRequest(BaseModel): |
no outgoing calls
no test coverage detected