You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns the next_page_token to use to fetch the next page of records.
33
35
34
36
:param response: the response to process
35
-
:param last_records: the records extracted from the response
37
+
:param last_page_size: the number of records read from the response
38
+
:param last_record: the last record extracted from the response
36
39
:return: A mapping {"next_page_token": <token>} for the next page from the input response object. Returning None means there are no more pages to read in this response.
Copy file name to clipboardExpand all lines: airbyte-cdk/python/airbyte_cdk/sources/declarative/requesters/paginators/strategies/cursor_pagination_strategy.py
+6-11
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
#
4
4
5
5
fromdataclassesimportInitVar, dataclass
6
-
fromtypingimportAny, Dict, List, Mapping, Optional, Union
6
+
fromtypingimportAny, Dict, Mapping, Optional, Union
0 commit comments