Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.18 KB

File metadata and controls

30 lines (22 loc) · 1.18 KB

CheckDestFolderDto

The result of checking whether files can be moved or copied to the specified folder.

Properties

Name Type Description Notes
result CheckDestFolderResult [optional]
files List[FileEntryBaseDto] The list of files in the destination folder. [optional]

Example

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)

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