Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| next_cursor | str | [optional] |
Example
from lighter.models.cursor import Cursor # TODO update the JSON string below json = "{}" # create an instance of Cursor from a JSON string cursor_instance = Cursor.from_json(json) # print the JSON string representation of the object print(Cursor.to_json()) # convert the object into a dict cursor_dict = cursor_instance.to_dict() # create an instance of Cursor from a dict cursor_from_dict = Cursor.from_dict(cursor_dict)