Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.55 KB

HandleNotefileChangesPending200Response.md

File metadata and controls

32 lines (23 loc) · 1.55 KB

HandleNotefileChangesPending200Response

Properties

Name Type Description Notes
total int The total number of files. [optional]
changes int The number of pending changes in the Notefile. [optional]
pending bool Whether there are pending changes. [optional]
info object 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

from notehub_py.models.handle_notefile_changes_pending200_response import HandleNotefileChangesPending200Response

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

# convert the object into a dict
handle_notefile_changes_pending200_response_dict = handle_notefile_changes_pending200_response_instance.to_dict()
# create an instance of HandleNotefileChangesPending200Response from a dict
handle_notefile_changes_pending200_response_from_dict = HandleNotefileChangesPending200Response.from_dict(handle_notefile_changes_pending200_response_dict)

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