Name | Type | Description | Notes |
---|---|---|---|
parent_folder_id | str | [optional] |
from docspring.models.move_folder_data import MoveFolderData
# TODO update the JSON string below
json = "{}"
# create an instance of MoveFolderData from a JSON string
move_folder_data_instance = MoveFolderData.from_json(json)
# print the JSON string representation of the object
print(MoveFolderData.to_json())
# convert the object into a dict
move_folder_data_dict = move_folder_data_instance.to_dict()
# create an instance of MoveFolderData from a dict
move_folder_data_from_dict = MoveFolderData.from_dict(move_folder_data_dict)