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
An object with a key for each Notefile that matched the request parameters, and value object with the changes and total for each file.
[optional]
Example
fromnotehub_py.models.handle_notefile_changes200_responseimportHandleNotefileChanges200Response# TODO update the JSON string belowjson="{}"# create an instance of HandleNotefileChanges200Response from a JSON stringhandle_notefile_changes200_response_instance=HandleNotefileChanges200Response.from_json(json)
# print the JSON string representation of the objectprint(HandleNotefileChanges200Response.to_json())
# convert the object into a dicthandle_notefile_changes200_response_dict=handle_notefile_changes200_response_instance.to_dict()
# create an instance of HandleNotefileChanges200Response from a dicthandle_notefile_changes200_response_from_dict=HandleNotefileChanges200Response.from_dict(handle_notefile_changes200_response_dict)