The parameters for creating a folder.
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | The folder title to create. |
from docspace_api_sdk.models.create_folder import CreateFolder
# TODO update the JSON string below
json = "{}"
# create an instance of CreateFolder from a JSON string
create_folder_instance = CreateFolder.from_json(json)
# print the JSON string representation of the object
print(CreateFolder.to_json())
# convert the object into a dict
create_folder_dict = create_folder_instance.to_dict()
# create an instance of CreateFolder from a dict
create_folder_from_dict = CreateFolder.from_dict(create_folder_dict)