Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 845 Bytes

File metadata and controls

29 lines (20 loc) · 845 Bytes

CursorPage

Properties

Name Type Description Notes
next_cursor str [optional]

Example

from wordlift_client.models.cursor_page import CursorPage

# TODO update the JSON string below
json = "{}"
# create an instance of CursorPage from a JSON string
cursor_page_instance = CursorPage.from_json(json)
# print the JSON string representation of the object
print(CursorPage.to_json())

# convert the object into a dict
cursor_page_dict = cursor_page_instance.to_dict()
# create an instance of CursorPage from a dict
cursor_page_from_dict = CursorPage.from_dict(cursor_page_dict)

[Back to Model list] [Back to API list] [Back to README]