Request to create a new folder.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Folder name | |
| parent_path_part_id | UUID | Parent PathPart ID (must be a FOLDER type) |
from ksapi.models.create_folder_request import CreateFolderRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateFolderRequest from a JSON string
create_folder_request_instance = CreateFolderRequest.from_json(json)
# print the JSON string representation of the object
print(CreateFolderRequest.to_json())
# convert the object into a dict
create_folder_request_dict = create_folder_request_instance.to_dict()
# create an instance of CreateFolderRequest from a dict
create_folder_request_from_dict = CreateFolderRequest.from_dict(create_folder_request_dict)