Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

UpdateFolderRequest

Request to update a folder (rename and/or move).

Properties

Name Type Description Notes
name str New folder name [optional]
parent_path_part_id UUID New parent PathPart ID for move (must be a FOLDER type) [optional]

Example

from ksapi.models.update_folder_request import UpdateFolderRequest

# TODO update the JSON string below
json = "{}"
# create an instance of UpdateFolderRequest from a JSON string
update_folder_request_instance = UpdateFolderRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateFolderRequest.to_json())

# convert the object into a dict
update_folder_request_dict = update_folder_request_instance.to_dict()
# create an instance of UpdateFolderRequest from a dict
update_folder_request_from_dict = UpdateFolderRequest.from_dict(update_folder_request_dict)

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