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
The cursor value of the next result, which is intended to be used as the "cursor" parameter value of the next call to this method. An empty string is returned if there are no more results after this results set.
has_more
bool
True if there are more events
Example
fromnotehub_py.models.get_project_events_by_cursor200_responseimportGetProjectEventsByCursor200Response# TODO update the JSON string belowjson="{}"# create an instance of GetProjectEventsByCursor200Response from a JSON stringget_project_events_by_cursor200_response_instance=GetProjectEventsByCursor200Response.from_json(json)
# print the JSON string representation of the objectprint(GetProjectEventsByCursor200Response.to_json())
# convert the object into a dictget_project_events_by_cursor200_response_dict=get_project_events_by_cursor200_response_instance.to_dict()
# create an instance of GetProjectEventsByCursor200Response from a dictget_project_events_by_cursor200_response_from_dict=GetProjectEventsByCursor200Response.from_dict(get_project_events_by_cursor200_response_dict)