Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 848 Bytes

Folder.md

File metadata and controls

32 lines (23 loc) · 848 Bytes

Folder

Properties

Name Type Description Notes
id str
name str
path str
parent_folder_id str

Example

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)

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