Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 2.43 KB

File metadata and controls

49 lines (41 loc) · 2.43 KB

FileEntryBaseDto

The file entry information.

Properties

Name Type Description Notes
title str The file entry title. [optional]
access FileShare [optional]
shared_by EmployeeDto [optional]
owned_by EmployeeDto [optional]
shared bool Specifies if the file entry is shared via link or not. [optional]
shared_for_user bool Specifies if the file entry is shared for user or not. [optional]
parent_shared bool Indicates whether the parent entity is shared. [optional]
short_web_url str The short Web URL. [optional]
created ApiDateTime [optional]
created_by EmployeeDto [optional]
updated ApiDateTime [optional]
auto_delete ApiDateTime [optional]
root_folder_type FolderType [optional]
parent_room_type FolderType [optional]
updated_by EmployeeDto [optional]
provider_item bool Specifies if the file entry provider is specified or not. [optional]
provider_key str The provider key of the file entry. [optional]
provider_id int The provider ID of the file entry. [optional]
order str The order of the file entry. [optional]
is_favorite bool Specifies if the file is a favorite or not. [optional]
file_entry_type FileEntryType [optional]

Example

from docspace_api_sdk.models.file_entry_base_dto import FileEntryBaseDto

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

# convert the object into a dict
file_entry_base_dto_dict = file_entry_base_dto_instance.to_dict()
# create an instance of FileEntryBaseDto from a dict
file_entry_base_dto_from_dict = FileEntryBaseDto.from_dict(file_entry_base_dto_dict)

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