The result of checking whether files can be moved or copied to the specified folder.
| Name | Type | Description | Notes |
|---|---|---|---|
| result | CheckDestFolderResult | [optional] | |
| files | List[FileEntryBaseDto] | The list of files in the destination folder. | [optional] |
from docspace_api_sdk.models.check_dest_folder_dto import CheckDestFolderDto
# TODO update the JSON string below
json = "{}"
# create an instance of CheckDestFolderDto from a JSON string
check_dest_folder_dto_instance = CheckDestFolderDto.from_json(json)
# print the JSON string representation of the object
print(CheckDestFolderDto.to_json())
# convert the object into a dict
check_dest_folder_dto_dict = check_dest_folder_dto_instance.to_dict()
# create an instance of CheckDestFolderDto from a dict
check_dest_folder_dto_from_dict = CheckDestFolderDto.from_dict(check_dest_folder_dto_dict)