Skip to content

Latest commit

 

History

History
87 lines (79 loc) · 5.59 KB

File metadata and controls

87 lines (79 loc) · 5.59 KB

FolderDtoString

The folder parameters.

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 str The file entry ID. [optional]
root_folder_id str The root folder ID of the file entry. [optional]
origin_id str The origin ID of the file entry. [optional]
origin_room_id str 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]
parent_id str The parent folder ID of the folder. [optional]
files_count int The number of files that the folder contains. [optional]
folders_count int The number of folders that the folder contains. [optional]
is_shareable bool Specifies if the folder can be shared or not. [optional]
new int The new element index in the folder. [optional]
mute bool Specifies if the folder notifications are enabled or not. [optional]
tags List[str] The list of tags of the folder. [optional]
logo Logo [optional]
pinned bool Specifies if the folder is pinned or not. [optional]
room_type RoomType [optional]
private bool Specifies if the folder is private or not. [optional]
indexing bool Specifies if the folder is indexed or not. [optional]
deny_download bool Specifies if the folder can be downloaded or not. [optional]
lifetime RoomDataLifetimeDto [optional]
watermark WatermarkDto [optional]
type FolderType [optional]
in_room bool Specifies if the folder is placed in the room or not. [optional]
quota_limit int The folder quota limit. [optional]
is_custom_quota bool Specifies if the folder room has a custom quota or not. [optional]
used_space int How much folder space is used (counter). [optional]
password_protected bool Specifies if the folder is password protected or not. [optional]
expired bool Specifies if an external link to the folder is expired or not. [optional]
chat_settings ChatSettings [optional]
root_room_type RoomType [optional]

Example

from docspace_api_sdk.models.folder_dto_string import FolderDtoString

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

# convert the object into a dict
folder_dto_string_dict = folder_dto_string_instance.to_dict()
# create an instance of FolderDtoString from a dict
folder_dto_string_from_dict = FolderDtoString.from_dict(folder_dto_string_dict)

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