| 41 | T = TypeVar('T') |
| 42 | |
| 43 | class PaginationParams(BaseModel): |
| 44 | page: int = 1 |
| 45 | size: int = 20 |
| 46 | order_by: Optional[str] = None |
| 47 | desc: bool = False |
| 48 | |
| 49 | class PaginatedResponse(BaseModel, Generic[T]): |
| 50 | items: list[T] = Field(description=f"{PLACEHOLDER_PREFIX}grid_items") |
no outgoing calls
no test coverage detected