Name | Type | Description | Notes |
---|---|---|---|
id | str | ||
name | str | ||
path | str | ||
parent_folder_id | str |
from docspring.models.folder import Folder
# TODO update the JSON string below
json = "{}"
# create an instance of Folder from a JSON string
folder_instance = Folder.from_json(json)
# print the JSON string representation of the object
print(Folder.to_json())
# convert the object into a dict
folder_dict = folder_instance.to_dict()
# create an instance of Folder from a dict
folder_from_dict = Folder.from_dict(folder_dict)