Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 919 Bytes

File metadata and controls

29 lines (21 loc) · 919 Bytes

CreateFolder

The parameters for creating a folder.

Properties

Name Type Description Notes
title str The folder title to create.

Example

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)

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