Skip to content

Latest commit

 

History

History
63 lines (55 loc) · 3.77 KB

File metadata and controls

63 lines (55 loc) · 3.77 KB

FileEntryDtoInteger

The generic 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]
id int The file entry ID. [optional]
root_folder_id int The root folder ID of the file entry. [optional]
origin_id int The origin ID of the file entry. [optional]
origin_room_id int The origin room ID of the file entry. [optional]
origin_title str The origin title of the file entry. [optional]
origin_room_title str The origin room title of the file entry. [optional]
can_share bool Specifies if the file entry can be shared or not. [optional]
share_settings FileEntryDtoIntegerAllOfShareSettings [optional]
security FileEntryDtoIntegerAllOfSecurity [optional]
available_share_rights FileEntryDtoIntegerAllOfAvailableShareRights [optional]
request_token str The request token of the file entry. [optional]
external bool Specifies if the folder can be accessed via an external link or not. [optional]
expiration_date ApiDateTime [optional]
is_link_expired bool Indicates whether the shareable link associated with the file or folder has expired. [optional]

Example

from docspace_api_sdk.models.file_entry_dto_integer import FileEntryDtoInteger

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

# convert the object into a dict
file_entry_dto_integer_dict = file_entry_dto_integer_instance.to_dict()
# create an instance of FileEntryDtoInteger from a dict
file_entry_dto_integer_from_dict = FileEntryDtoInteger.from_dict(file_entry_dto_integer_dict)

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