Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

HandleNotefileDeleteRequest.md

File metadata and controls

29 lines (20 loc) · 1.1 KB

HandleNotefileDeleteRequest

Properties

Name Type Description Notes
files List[str] One or more files to obtain change information from. [optional]

Example

from notehub_py.models.handle_notefile_delete_request import HandleNotefileDeleteRequest

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

# convert the object into a dict
handle_notefile_delete_request_dict = handle_notefile_delete_request_instance.to_dict()
# create an instance of HandleNotefileDeleteRequest from a dict
handle_notefile_delete_request_from_dict = HandleNotefileDeleteRequest.from_dict(handle_notefile_delete_request_dict)

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