Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 3.82 KB

File metadata and controls

52 lines (43 loc) · 3.82 KB

InlineResponse200239ResultDataFiles

Properties

Name Type Description Notes
absdir str The file path to the user's home directory. [optional]
ctime int The file's creation time. [optional]
exists int Whether the file exists in the directory. * `1` — Exists. * `0` — Does not exist. [optional]
file str The filename. [optional]
fullpath str The file's full file path. [optional]
gid int The file owner's system group ID. [optional]
hash str The full file path's hash. [optional]
humansize str The formatted size of the file. The function returns the size with one of the following symbols: * `KB` — Kilobytes. * `MB` — Megabytes. * `GB` — Gigabytes. [optional]
isleaf int Whether the directory contains subdirectories. * `1` — Contains subdirectories. * `0` — Does not contain subdirectories. [optional]
isparent int Whether the file is a parent record. * `1` — A parent record. * `0` — Not a parent record. [optional]
mimename str The file's MIME type name. [optional]
mimetype str The file's MIME type. [optional]
mode str The file's textual permissions. [optional]
mtime int The file's last modification time. [optional]
nicemode int The file's numerical permissions. [optional]
path str The absolute path to the file. [optional]
phash str The parent filepath's file hash. [optional]
rawmimename str The file's raw MIME type's name. [optional]
rawmimetype str The file's raw MIME type. [optional]
read int Whether the file is readable. * `1` — Readable. * `0` — Not readable. Note: The function only returns this value if the `include_permissions` value is `1`. [optional]
size int The file's size, in bytes. [optional]
type str The item's type. * `file` — A file. * `dir` — A directory. * `char` — A character special device. * `block` — A block special device. * `fifo` - A named pipe (FIFO). * `link` — A symbolic link. * `socket` — A Unix domain socket. [optional]
uid int The file owner's system user ID. [optional]
write int Whether the file is writable. * `1` — Writable. * `0` — Not writable. Note: The function only returns this value if the `include_permissions` value is `1`. [optional]

Example

from clientapi_cpanel.models.inline_response200239_result_data_files import InlineResponse200239ResultDataFiles

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

# convert the object into a dict
inline_response200239_result_data_files_dict = inline_response200239_result_data_files_instance.to_dict()
# create an instance of InlineResponse200239ResultDataFiles from a dict
inline_response200239_result_data_files_from_dict = InlineResponse200239ResultDataFiles.from_dict(inline_response200239_result_data_files_dict)

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