Modify the request to set the parameter for fetching next page, e.g. set the `page` query parameter.
(self, request, next_page_id: int | str)
| 227 | pass |
| 228 | |
| 229 | def set_next_page_param(self, request, next_page_id: int | str): |
| 230 | """ |
| 231 | Modify the request to set the parameter for fetching next page, |
| 232 | e.g. set the `page` query parameter. |
| 233 | """ |
| 234 | pass |
| 235 | |
| 236 | |
| 237 | class PagedResponse(Response): |